Skip to content

Commit

Permalink
Update dependency stylelint to v16 (grafana#83252)
Browse files Browse the repository at this point in the history
* 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]>
  • Loading branch information
renovate[bot] and ashharrison90 authored Feb 23, 2024
1 parent ad80518 commit d4bc0fe
Show file tree
Hide file tree
Showing 3 changed files with 82 additions and 206 deletions.
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -205,8 +205,7 @@
"sass": "1.70.0",
"sass-loader": "14.1.1",
"style-loader": "3.3.4",
"stylelint": "15.11.0",
"stylelint-config-prettier": "9.0.5",
"stylelint": "16.2.1",
"stylelint-config-sass-guidelines": "11.0.0",
"terser-webpack-plugin": "5.3.10",
"testing-library-selector": "0.3.1",
Expand Down
5 changes: 1 addition & 4 deletions stylelint.config.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
module.exports = {
extends: ['stylelint-config-sass-guidelines', 'stylelint-config-prettier'],
extends: ['stylelint-config-sass-guidelines'],
ignoreFiles: ['**/node_modules/**/*.scss'],
rules: {
'at-rule-no-vendor-prefix': null,
'color-hex-case': null,
'color-hex-length': null,
'color-named': null,
'declaration-block-no-duplicate-properties': [
Expand All @@ -21,11 +20,9 @@ module.exports = {
'border-right': [],
'border-top': [],
},
'function-comma-space-after': null,
'function-url-quotes': null,
'length-zero-no-unit': null,
'max-nesting-depth': null,
'number-no-trailing-zeros': null,
'property-no-vendor-prefix': null,
'rule-empty-line-before': null,
'scss/at-function-pattern': null,
Expand Down
Loading

0 comments on commit d4bc0fe

Please sign in to comment.