-
Notifications
You must be signed in to change notification settings - Fork 0
/
stylelint.config.js
85 lines (85 loc) · 3.19 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
module.exports = {
extends: [
'stylelint-config-standard-scss',
'stylelint-config-recess-order',
],
plugins: [
'stylelint-scss',
'stylelint-order',
],
rules: {
'color-hex-length': null,
'number-leading-zero': null,
'selector-list-comma-newline-after': null,
'value-keyword-case': null,
'value-no-vendor-prefix': null,
'declaration-block-no-duplicate-properties': null,
'property-no-unknown': null,
'custom-property-empty-line-before': null,
'color-no-invalid-hex': true,
'font-family-no-duplicate-names': true,
'named-grid-areas-no-invalid': true,
'function-calc-no-unspaced-operator': true,
'function-linear-gradient-no-nonstandard-direction': true,
'string-no-newline': true,
'unit-no-unknown': true,
'custom-property-no-missing-var-function': true,
'declaration-block-no-duplicate-custom-properties': true,
'declaration-block-no-shorthand-property-overrides': true,
'block-no-empty': true,
'declaration-block-no-redundant-longhand-properties': null,
'selector-type-no-unknown': true,
'selector-pseudo-class-no-unknown': true,
'selector-pseudo-element-no-unknown': true,
'comment-no-empty': true,
'no-descending-specificity': null,
'no-invalid-position-at-import-rule': true,
'no-duplicate-at-import-rules': true,
'no-extra-semicolons': true,
'no-invalid-double-slash-comments': true,
'shorthand-property-no-redundant-values': true,
'declaration-block-single-line-max-declarations': 1,
'selector-max-empty-lines': 0,
'selector-max-universal': 1,
'no-unknown-animations': true,
'color-hex-case': 'lower',
'function-max-empty-lines': 0,
'function-name-case': 'lower',
'number-no-trailing-zeros': true,
'number-max-precision': 6,
'number-leading-zero': 'never',
'unit-case': 'lower',
'property-case': 'lower',
'value-list-max-empty-lines': 0,
'declaration-colon-space-after': 'always-single-line',
'declaration-colon-space-before': 'never',
'block-closing-brace-space-before': 'always-single-line',
'block-opening-brace-space-after': 'always-single-line',
'block-opening-brace-space-before': 'always',
'selector-attribute-brackets-space-inside': 'never',
'selector-combinator-space-after': 'always',
'selector-combinator-space-before': 'always',
'selector-pseudo-class-case': 'lower',
'selector-pseudo-element-case': 'lower',
'selector-type-case': 'lower',
'at-rule-name-case': 'lower',
'at-rule-semicolon-space-before': 'never',
'at-rule-empty-line-before': [
'always',
{
except: ['blockless-after-same-name-blockless', 'first-nested'],
ignore: ['after-comment'],
},
],
'declaration-empty-line-before': 'never',
'scss/dollar-variable-colon-space-after': 'always',
'scss/dollar-variable-colon-space-before': 'never',
'scss/dollar-variable-pattern': /^[a-z-0-9]+$/,
'scss/double-slash-comment-whitespace-inside': 'always',
'scss/operator-no-newline-before': true,
'scss/operator-no-unspaced': true,
'scss/selector-no-redundant-nesting-selector': true,
'scss/at-rule-no-unknown': true,
'scss/at-import-partial-extension': null,
},
}