diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2022-02-02 20:34:21 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-02 20:34:21 -0500 |
commit | 3662c07c63377cc245292f9a0d357ceae491213b (patch) | |
tree | 1d9b6870bb5991e68a9f1be9aa47957dddb8275d /.stylelintrc.json | |
parent | 2aea133868f05fb4a63fe9b642f83a0e147a1cb5 (diff) |
Update node dependencies (#2061)
* Run npm update
* Run npm audit fix
* Update eslint to 8.8.0
* Update eslint-plugin-no-unsanitized to 4.0.1
* Update html-validate to 6.2.0
* Update jsdom to 19.0.0
* Update stylelint to 14.3.0
* Update stylelint-config-recommended to 6.0.0
* Remove dead rule
* Fix rule affecting currentColor keyword
Diffstat (limited to '.stylelintrc.json')
-rw-r--r-- | .stylelintrc.json | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/.stylelintrc.json b/.stylelintrc.json index ba2572a2..04d59126 100644 --- a/.stylelintrc.json +++ b/.stylelintrc.json @@ -8,7 +8,6 @@ "string-quotes": "single", "color-named": "never", "declaration-no-important": true, - "function-calc-no-invalid": true, "function-calc-no-unspaced-operator": true, "string-no-newline": true, "unit-no-unknown": true, @@ -25,7 +24,12 @@ "number-leading-zero": "always", "number-no-trailing-zeros": true, "unit-case": "lower", - "value-keyword-case": "lower", + "value-keyword-case": [ + "lower", + { + "camelCaseSvgKeywords": true + } + ], "property-case": "lower", "indentation": 4, "max-empty-lines": 2, |