diff options
author | Tim Zallmann <tzallmann@gitlab.com> | 2019-03-26 08:13:21 +0000 |
---|---|---|
committer | Kushal Pandya <kushalspandya@gmail.com> | 2019-03-26 08:13:21 +0000 |
commit | 5b05d2b987e1c261d161667eb9a8710a527cba31 (patch) | |
tree | 121c37780037d446fb087309b83fb1dfc804b5cb /.stylelintrc | |
parent | b4de23a687d16c96f1adaa456e4aeaac64d9cb23 (diff) | |
download | gitlab-ce-5b05d2b987e1c261d161667eb9a8710a527cba31.tar.gz |
First iteration of GitLab own Stylelints
DRYed the code
Changed new rules to warnings
Manual prettified and added stylelint rules
Diffstat (limited to '.stylelintrc')
-rw-r--r-- | .stylelintrc | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/.stylelintrc b/.stylelintrc index c0f21aed292..241d2c94a88 100644 --- a/.stylelintrc +++ b/.stylelintrc @@ -1,6 +1,8 @@ { "plugins":[ - "stylelint-scss" + "./scripts/frontend/stylelint/stylelint-duplicate-selectors.js", + "./scripts/frontend/stylelint/stylelint-utility-classes.js", + "stylelint-scss", ], "rules":{ "at-rule-blacklist":[ @@ -95,13 +97,15 @@ }, ], "selector-list-comma-newline-after":"always", - "selector-max-compound-selectors":[5, { "severity": "warning" }], + "selector-max-compound-selectors":[3, { "severity": "warning" }], "selector-max-id":1, "selector-no-vendor-prefix":true, "selector-pseudo-element-colon-notation":"double", "selector-pseudo-element-no-unknown":true, "shorthand-property-no-redundant-values":true, "string-quotes":"single", - "value-no-vendor-prefix":[true, { ignoreValues: ["sticky"] }] + "value-no-vendor-prefix":[true, { ignoreValues: ["sticky"] }], + "stylelint-gitlab/duplicate-selectors":[true,{ "severity": "warning" }], + "stylelint-gitlab/utility-classes":[true,{ "severity": "warning" }], } } |