diff options
Diffstat (limited to '.stylelintrc.json')
-rw-r--r-- | .stylelintrc.json | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/.stylelintrc.json b/.stylelintrc.json new file mode 100644 index 0000000..f1e63b1 --- /dev/null +++ b/.stylelintrc.json @@ -0,0 +1,27 @@ +{ + "extends": "stylelint-config-standard", + "overrides": [ + { + "files": ["**/*.html"], + "customSyntax": "postcss-html" + } + ], + "ignoreFiles": [ + "**/*.min.css", + "**/*.js", + "interface/css/d3evolution.css", + "interface/css/codejar-linenumbers.css", + "interface/css/nprogress.css", + "interface/css/prism.css" + ], + "rules": { + "alpha-value-notation": null, + "at-rule-empty-line-before": null, + "color-hex-length": null, + "comment-empty-line-before": null, + "media-feature-range-notation": "prefix", + "property-no-vendor-prefix": null, + "rule-empty-line-before": null, + "value-no-vendor-prefix": null + } +} |