-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.stylelintrc.js
33 lines (29 loc) · 879 Bytes
/
.stylelintrc.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
module.exports = {
root: true,
'extends': 'stylelint-config-standard',
rules: {
'block-closing-brace-newline-after': null,
'declaration-empty-line-before': null,
'selector-no-qualifying-type': null,
'comment-empty-line-before': null,
'at-rule-empty-line-before': null,
'number-no-trailing-zeros': null,
'rule-empty-line-before': null,
'length-zero-no-unit': null,
'function-name-case': null,
'color-hex-length': null,
'max-nesting-depth': 3,
'at-rule-no-unknown': [true, {
'ignoreAtRules': [
'include', 'function', 'mixin', 'content', 'at-root',
'for', 'if', 'else', 'each', 'return'
]
}],
'selector-pseudo-element-no-unknown': [true, {
ignorePseudoElements: ['global'],
}],
'selector-pseudo-class-no-unknown': [true, {
ignorePseudoClasses: ['global']
}]
}
}