diff options
Diffstat (limited to '.stylelintrc.json')
-rw-r--r-- | .stylelintrc.json | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/.stylelintrc.json b/.stylelintrc.json new file mode 100644 index 000000000..b25642b8f --- /dev/null +++ b/.stylelintrc.json @@ -0,0 +1,17 @@ +{ + "extends": "stylelint-config-standard", + "ignoreFiles": [ + "**/*.min.css", + "**/*.min.js", + "interface/css/d3evolution.css", + "interface/css/nprogress.css" + ], + "rules": { + "at-rule-empty-line-before": null, + "color-hex-length": null, + "comment-empty-line-before": null, + "indentation": 4, + "number-leading-zero": null, + "rule-empty-line-before": null + } +} |