-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.js
35 lines (35 loc) · 925 Bytes
/
index.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
34
35
module.exports = {
extends: ['stylelint-config-standard-scss'],
rules: {
'at-rule-disallowed-list': 'extend',
'selector-pseudo-class-no-unknown': [
true,
{
ignorePseudoClasses: ['export', 'import', 'global', 'local'],
},
],
'property-no-unknown': [
true,
{
ignoreProperties: ['composes'],
},
],
'max-nesting-depth': [
4,
{
ignoreAtRules: ['for', 'include', 'if', 'else', 'each'],
},
],
'indentation': null,
'string-quotes': null,
'selector-descendant-combinator-no-non-space': null,
'color-hex-length': null,
'declaration-colon-newline-after': null,
'declaration-empty-line-before': null,
'function-name-case': null,
'number-leading-zero': null,
'shorthand-property-no-redundant-values': null,
'value-no-vendor-prefix': null,
'scss/dollar-variable-pattern': null,
},
}