1
Fork 0

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
This commit is contained in:
toasted-nutbread 2022-02-02 20:34:21 -05:00 committed by GitHub
parent 2aea133868
commit 3662c07c63
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 1017 additions and 1590 deletions

View File

@ -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,

2583
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -38,15 +38,15 @@
"devDependencies": {
"browserify": "^17.0.0",
"css": "^3.0.0",
"eslint": "^7.32.0",
"eslint": "^8.8.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-no-unsanitized": "^3.1.5",
"fake-indexeddb": "^3.1.3",
"html-validate": "^4.14.1",
"jsdom": "^16.7.0",
"eslint-plugin-no-unsanitized": "^4.0.1",
"fake-indexeddb": "^3.1.7",
"html-validate": "^6.2.0",
"jsdom": "^19.0.0",
"parse5": "^6.0.1",
"stylelint": "^13.13.1",
"stylelint-config-recommended": "^4.0.0",
"web-ext": "^6.4.0"
"stylelint": "^14.3.0",
"stylelint-config-recommended": "^6.0.0",
"web-ext": "^6.6.0"
}
}