From fbffe544a6775f14d682847833b88eb3680e2dfd Mon Sep 17 00:00:00 2001 From: Alexander Moisseev Date: Sat, 6 Apr 2019 20:47:52 +0300 Subject: [Test] Add stylelint checks for CSS and embedded styles --- .stylelintrc.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .stylelintrc.json (limited to '.stylelintrc.json') 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 + } +} -- cgit v1.2.3