Update Stylelint disable settings and ignores (#23776)
parent
0c7ce98ff6
commit
2904fd0fdd
|
@ -2,9 +2,16 @@ module.exports = {
|
||||||
extends: ['stylelint-config-standard-scss'],
|
extends: ['stylelint-config-standard-scss'],
|
||||||
ignoreFiles: [
|
ignoreFiles: [
|
||||||
'app/javascript/styles/mastodon/reset.scss',
|
'app/javascript/styles/mastodon/reset.scss',
|
||||||
|
'coverage/**/*',
|
||||||
'node_modules/**/*',
|
'node_modules/**/*',
|
||||||
|
'public/assets/**/*',
|
||||||
|
'public/packs/**/*',
|
||||||
|
'public/packs-test/**/*',
|
||||||
'vendor/**/*',
|
'vendor/**/*',
|
||||||
],
|
],
|
||||||
|
reportDescriptionlessDisables: true,
|
||||||
|
reportInvalidScopeDisables: true,
|
||||||
|
reportNeedlessDisables: true,
|
||||||
rules: {
|
rules: {
|
||||||
'at-rule-empty-line-before': null,
|
'at-rule-empty-line-before': null,
|
||||||
'color-function-notation': null,
|
'color-function-notation': null,
|
||||||
|
|
Loading…
Reference in New Issue