We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 736dd62 + c0335fe commit 9387c24Copy full SHA for 9387c24
index.js
@@ -13,7 +13,8 @@ module.exports = {
13
'scss/dollar-variable-pattern': /^[-_]?[a-z0-9\-]+/,
14
'selector-type-case': ['lower', { severity: 'error' }],
15
'declaration-empty-line-before': null,
16
- 'value-keyword-case': ['lower', { severity: 'error' }],
+ // ignoreKeywords for value-keyword-case in material color codes
17
+ 'value-keyword-case': ['lower', { ignoreKeywords: ['/A[0-9]{3}/'], severity: 'error' }],
18
'rule-empty-line-before': null,
19
'scss/dollar-variable-empty-line-before': null,
20
'custom-property-empty-line-before': null,
@@ -65,7 +66,7 @@ module.exports = {
65
66
'left',
67
'right',
68
],
- severity: 'error',
69
+ severity: 'warning',
70
},
71
72
'pitcher/max-lines': [500, { severity: 'error' }],
0 commit comments