-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathstylelint.config.js
34 lines (34 loc) · 1.28 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
33
34
module.exports = {
extends: ['stylelint-config-standard-scss', 'stylelint-config-css-modules'],
plugins: ['stylelint-order'],
rules: {
'alpha-value-notation': null,
'at-rule-no-unknown': null,
'block-no-empty': null,
'color-function-notation': 'legacy',
'font-family-name-quotes': null,
'media-feature-range-notation': 'prefix',
'no-descending-specificity': null,
'no-empty-source': null,
'property-no-vendor-prefix': null,
'scss/double-slash-comment-whitespace-inside': 'never',
'scss/at-rule-conditional-no-parentheses': null,
'scss/at-import-no-partial-leading-underscore': null,
'scss/at-else-closing-brace-newline-after': 'always-last-in-chain',
'scss/at-else-closing-brace-space-after': 'always-intermediate',
'scss/at-else-empty-line-before': 'never',
'scss/at-if-closing-brace-newline-after': 'always-last-in-chain',
'scss/at-if-closing-brace-space-after': 'always-intermediate',
'scss/at-import-partial-extension': null,
'scss/at-extend-no-missing-placeholder': null,
'scss/load-partial-extension': null,
'scss/no-global-function-names': null,
'selector-class-pattern': null,
'selector-pseudo-class-no-unknown': [
true,
{
ignorePseudoClasses: ['global'],
},
],
},
};