-
Notifications
You must be signed in to change notification settings - Fork 132
Expand file tree
/
Copy path.stylelintrc-css.yml
More file actions
45 lines (45 loc) · 1.45 KB
/
.stylelintrc-css.yml
File metadata and controls
45 lines (45 loc) · 1.45 KB
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
rules:
annotation-no-unknown: true
at-rule-descriptor-no-unknown: true
at-rule-descriptor-value-no-unknown: true
at-rule-no-deprecated: true
at-rule-no-unknown: true
at-rule-no-vendor-prefix: true
custom-property-no-missing-var-function: true
declaration-block-no-shorthand-property-overrides: true
declaration-property-value-keyword-no-deprecated:
- true
- ignoreKeywords:
- 'break-word'
declaration-property-value-no-unknown:
- true
- propertiesSyntax:
'-ms-grid-row-align': 'flex-start'
font-family-no-duplicate-names: true
font-family-no-missing-generic-family-keyword:
- true
- ignoreFontFamilies:
- 'a'
keyframe-block-no-duplicate-selectors: true
media-feature-name-no-unknown: true
media-feature-name-value-no-unknown: true
media-query-no-invalid: true
named-grid-areas-no-invalid: true
no-invalid-double-slash-comments: true
no-invalid-position-at-import-rule: true
no-irregular-whitespace: true
property-no-unknown: true
selector-anb-no-unmatchable: true
selector-pseudo-class-no-unknown: true
selector-pseudo-element-no-unknown: true
syntax-string-no-invalid: true
media-feature-name-no-vendor-prefix: true
declaration-property-value-disallowed-list:
# Matching all custom properties
/^--.*/:
# Disallow any value starting with a $ - SCSS variable.
- '/^\$.*$/'
selector-no-vendor-prefix:
- true
- ignoreSelectors:
- '::-moz-selection'