mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-09 18:43:34 -05:00
Add extra stylelint sass dependencies (#1130)
* Add extra stylelint sass dependencies * adding updated tap * fixed again Co-authored-by: Lukas Gravley <admiralawkbar@github.com>
This commit is contained in:
parent
9a7a57db70
commit
a6849b7746
2 changed files with 31 additions and 2 deletions
28
dependencies/package-lock.json
generated
vendored
28
dependencies/package-lock.json
generated
vendored
|
@ -5374,6 +5374,15 @@
|
|||
"util-deprecate": "^1.0.2"
|
||||
}
|
||||
},
|
||||
"postcss-sorting": {
|
||||
"version": "5.0.1",
|
||||
"resolved": "https://registry.npmjs.org/postcss-sorting/-/postcss-sorting-5.0.1.tgz",
|
||||
"integrity": "sha512-Y9fUFkIhfrm6i0Ta3n+89j56EFqaNRdUKqXyRp6kvTcSXnmgEjaVowCXH+JBe9+YKWqd4nc28r2sgwnzJalccA==",
|
||||
"requires": {
|
||||
"lodash": "^4.17.14",
|
||||
"postcss": "^7.0.17"
|
||||
}
|
||||
},
|
||||
"postcss-syntax": {
|
||||
"version": "0.36.2",
|
||||
"resolved": "https://registry.npmjs.org/postcss-syntax/-/postcss-syntax-0.36.2.tgz",
|
||||
|
@ -6499,6 +6508,15 @@
|
|||
"resolved": "https://registry.npmjs.org/stylelint-config-recommended/-/stylelint-config-recommended-3.0.0.tgz",
|
||||
"integrity": "sha512-F6yTRuc06xr1h5Qw/ykb2LuFynJ2IxkKfCMf+1xqPffkxh0S09Zc902XCffcsw/XMFq/OzQ1w54fLIDtmRNHnQ=="
|
||||
},
|
||||
"stylelint-config-sass-guidelines": {
|
||||
"version": "7.1.0",
|
||||
"resolved": "https://registry.npmjs.org/stylelint-config-sass-guidelines/-/stylelint-config-sass-guidelines-7.1.0.tgz",
|
||||
"integrity": "sha512-WvC9nRdlYknftPcUaJCajrPYKg6d2CKffrr7BPPkN/i/Mt8Qsm1hNQ9lqC1sKoCIKdH051SCEZi10qwFLgDbbg==",
|
||||
"requires": {
|
||||
"stylelint-order": "^4.0.0",
|
||||
"stylelint-scss": "^3.18.0"
|
||||
}
|
||||
},
|
||||
"stylelint-config-standard": {
|
||||
"version": "20.0.0",
|
||||
"resolved": "https://registry.npmjs.org/stylelint-config-standard/-/stylelint-config-standard-20.0.0.tgz",
|
||||
|
@ -6507,6 +6525,16 @@
|
|||
"stylelint-config-recommended": "^3.0.0"
|
||||
}
|
||||
},
|
||||
"stylelint-order": {
|
||||
"version": "4.1.0",
|
||||
"resolved": "https://registry.npmjs.org/stylelint-order/-/stylelint-order-4.1.0.tgz",
|
||||
"integrity": "sha512-sVTikaDvMqg2aJjh4r48jsdfmqLT+nqB1MOsaBnvM3OwLx4S+WXcsxsgk5w18h/OZoxZCxuyXMh61iBHcj9Qiw==",
|
||||
"requires": {
|
||||
"lodash": "^4.17.15",
|
||||
"postcss": "^7.0.31",
|
||||
"postcss-sorting": "^5.0.1"
|
||||
}
|
||||
},
|
||||
"stylelint-scss": {
|
||||
"version": "3.18.0",
|
||||
"resolved": "https://registry.npmjs.org/stylelint-scss/-/stylelint-scss-3.18.0.tgz",
|
||||
|
|
5
dependencies/package.json
vendored
5
dependencies/package.json
vendored
|
@ -23,9 +23,10 @@
|
|||
"sql-lint": "0.0.15",
|
||||
"standard": "^16.0.3",
|
||||
"stylelint": "^13.8.0",
|
||||
"stylelint-config-sass-guidelines": "^7.1.0",
|
||||
"stylelint-config-standard": "^20.0.0",
|
||||
"stylelint-scss": "^3.18.0",
|
||||
"typescript": "^4.1.3",
|
||||
"tekton-lint": "^0.5.2"
|
||||
"tekton-lint": "^0.5.2",
|
||||
"typescript": "^4.1.3"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue