summaryrefslogtreecommitdiffstats
path: root/.stylelintrc
diff options
context:
space:
mode:
Diffstat (limited to '.stylelintrc')
-rw-r--r--.stylelintrc16
1 files changed, 16 insertions, 0 deletions
diff --git a/.stylelintrc b/.stylelintrc
new file mode 100644
index 0000000..0bcdb7c
--- /dev/null
+++ b/.stylelintrc
@@ -0,0 +1,16 @@
+{
+ "extends": "stylelint-config-standard",
+ "customSyntax": "postcss-html",
+ "rules": {
+ "indentation": 4,
+ "no-descending-specificity": null,
+ "selector-list-comma-newline-after": null,
+ "declaration-empty-line-before": null,
+ "alpha-value-notation": "number",
+ "color-function-notation": "legacy",
+ "shorthand-property-no-redundant-values": null,
+ "color-hex-length": null,
+ "declaration-block-no-redundant-longhand-properties": null,
+ "at-rule-no-unknown": null
+ }
+}