forked from FreeFeed/freefeed-react-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstylelint.config.js
30 lines (25 loc) · 981 Bytes
/
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
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/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/at-import-partial-extension': null,
'color-function-notation': [null, 'TODO: check it later'],
'scss/no-global-function-names': [null, 'TODO: check it later'],
},
};