diff options
author | Phil Hughes <me@iamphill.com> | 2019-04-26 11:30:00 +0000 |
---|---|---|
committer | Phil Hughes <me@iamphill.com> | 2019-04-26 11:30:00 +0000 |
commit | 696698d34b34bc60bc7819859fed1ba6ec06256b (patch) | |
tree | 9c119dd36152fff5dc6f3fb507101a68df782d87 | |
parent | 97b4aa4f088741f70945c51fcdb4c20a44c203c6 (diff) | |
parent | 86dcb0435802c2ceb91632a52335b5ee3a7155eb (diff) | |
download | gitlab-ce-696698d34b34bc60bc7819859fed1ba6ec06256b.tar.gz |
Merge branch 'winh-stylelint-valid-json' into 'master'
Make stylelint config a valid JSON file
See merge request gitlab-org/gitlab-ce!27721
-rw-r--r-- | .stylelintrc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.stylelintrc b/.stylelintrc index 241d2c94a88..2325a03d9b9 100644 --- a/.stylelintrc +++ b/.stylelintrc @@ -2,7 +2,7 @@ "plugins":[ "./scripts/frontend/stylelint/stylelint-duplicate-selectors.js", "./scripts/frontend/stylelint/stylelint-utility-classes.js", - "stylelint-scss", + "stylelint-scss" ], "rules":{ "at-rule-blacklist":[ @@ -94,7 +94,7 @@ { "message":"Selector should be written in lowercase with hyphens (selector-class-pattern)", "severity": "warning" - }, + } ], "selector-list-comma-newline-after":"always", "selector-max-compound-selectors":[3, { "severity": "warning" }], @@ -104,8 +104,8 @@ "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" }], + "stylelint-gitlab/utility-classes":[true,{ "severity": "warning" }] } } |