-
-
Notifications
You must be signed in to change notification settings - Fork 30
/
stylelint.config.js
32 lines (27 loc) · 1.07 KB
/
stylelint.config.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
module.exports = {
extends: ['stylelint-config-standard-scss', 'stylelint-prettier/recommended'],
rules: {
'no-descending-specificity': null,
'selector-pseudo-class-no-unknown': [true, { ignorePseudoClasses: ['global'] }],
'selector-class-pattern': null,
'selector-id-pattern': null,
'scss/dollar-variable-pattern': null,
'scss/dollar-variable-colon-space-after': null,
'scss/at-function-pattern': null,
'keyframes-name-pattern': null,
'value-keyword-case': null,
'function-name-case': null,
'value-no-vendor-prefix': null,
'property-no-vendor-prefix': null,
'at-rule-no-vendor-prefix': null,
'selector-no-vendor-prefix': null,
'color-hex-length': null,
'scss/comment-no-empty': null,
'alpha-value-notation': 'number',
'scss/at-extend-no-missing-placeholder': null,
'scss/load-partial-extension': null,
'color-function-notation': [null, 'TODO: check it later'],
'scss/no-global-function-names': [null, 'TODO: check it later'],
'media-feature-range-notation': [null, 'TODO: check it later'],
},
};