-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
36 lines (36 loc) · 936 Bytes
/
index.js
File metadata and controls
36 lines (36 loc) · 936 Bytes
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
34
35
36
module.exports = {
extends: ['stylelint-config-standard-scss', 'stylelint-config-recess-order', 'stylelint-prettier/recommended'],
plugins: ['stylelint-scss'],
rules: {
'at-rule-empty-line-before': [
'always',
{
except: ['after-same-name', 'inside-block', 'blockless-after-same-name-blockless', 'first-nested'],
ignore: ['after-comment'],
},
],
'at-rule-no-unknown': null,
'max-nesting-depth': [
4,
{
ignore: ['blockless-at-rules', 'pseudo-classes'],
},
],
'function-url-quotes': null,
'selector-pseudo-element-colon-notation': 'double',
'selector-type-case': 'lower',
'no-descending-specificity': null,
'scss/at-rule-no-unknown': [
true,
{
ignoreAtRules: ['/^my-/'],
},
],
'selector-pseudo-class-no-unknown': [
true,
{
ignorePseudoClasses: ['global'],
},
],
},
}