Skip to content

Commit d4bc0fe

Browse files
Update dependency stylelint to v16 (#83252)
* Update dependency stylelint to v16 * remove stylelint-config-prettier since it's no longer necessary --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Ashley Harrison <[email protected]>
1 parent ad80518 commit d4bc0fe

File tree

3 files changed

+82
-206
lines changed

3 files changed

+82
-206
lines changed

package.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -205,8 +205,7 @@
205205
"sass": "1.70.0",
206206
"sass-loader": "14.1.1",
207207
"style-loader": "3.3.4",
208-
"stylelint": "15.11.0",
209-
"stylelint-config-prettier": "9.0.5",
208+
"stylelint": "16.2.1",
210209
"stylelint-config-sass-guidelines": "11.0.0",
211210
"terser-webpack-plugin": "5.3.10",
212211
"testing-library-selector": "0.3.1",

stylelint.config.js

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
module.exports = {
2-
extends: ['stylelint-config-sass-guidelines', 'stylelint-config-prettier'],
2+
extends: ['stylelint-config-sass-guidelines'],
33
ignoreFiles: ['**/node_modules/**/*.scss'],
44
rules: {
55
'at-rule-no-vendor-prefix': null,
6-
'color-hex-case': null,
76
'color-hex-length': null,
87
'color-named': null,
98
'declaration-block-no-duplicate-properties': [
@@ -21,11 +20,9 @@ module.exports = {
2120
'border-right': [],
2221
'border-top': [],
2322
},
24-
'function-comma-space-after': null,
2523
'function-url-quotes': null,
2624
'length-zero-no-unit': null,
2725
'max-nesting-depth': null,
28-
'number-no-trailing-zeros': null,
2926
'property-no-vendor-prefix': null,
3027
'rule-empty-line-before': null,
3128
'scss/at-function-pattern': null,

0 commit comments

Comments
 (0)