-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.stylelintrc.yaml
49 lines (49 loc) · 1.26 KB
/
.stylelintrc.yaml
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
extends:
- stylelint-config-recommended
- stylelint-config-prettier
- stylelint-config-rational-order
plugins:
- stylelint-order
- stylelint-config-rational-order/plugin
syntax: scss
rules:
string-quotes: single
no-duplicate-at-import-rules: true
no-duplicate-selectors:
max-nesting-depth: 3
at-rule-no-unknown:
color-no-invalid-hex: true
declaration-colon-space-before: never
media-feature-range-operator-space-before: never
media-feature-range-operator-space-after: never
media-feature-colon-space-before: never
no-descending-specificity:
font-family-no-missing-generic-family-keyword:
length-zero-no-unit: true
property-disallowed-list:
- alignment-baseline
- all
- backface-visibility
- background-attachment
- background-blend-mode
- background-clip
- background-origin
- background-position-x
- background-position-y
- background-repeat-x
- background-repeat-y
- buffered-rendering
- color-interpolation
- enable-background
- float
- "/^grid/"
- "/^marker/"
- object-fit
selector-pseudo-element-disallowed-list:
- before
- after
order/properties-order: []
plugin/rational-order:
- true
- border-in-box-model: true
empty-line-between-groups: true