-
-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy path.stylelintrc
31 lines (27 loc) · 968 Bytes
/
.stylelintrc
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
# vi: set ft=yaml :
extends:
- stylelint-config-standard
- stylelint-config-recommended-scss
rules:
# stylelint-config-recommended
unit-no-unknown: [true, { ignoreFunctions: ["-webkit-image-set"] }]
function-no-unknown: null
selector-pseudo-element-no-unknown: [true, { ignorePseudoElements: ["-webkit"] }]
no-descending-specificity: null
at-rule-prelude-no-invalid: null
# stylelint-config-standard
at-rule-empty-line-before: [null, { except: first-nested }]
declaration-empty-line-before: null
declaration-property-value-no-unknown: null
alpha-value-notation: "number"
selector-no-vendor-prefix: null
property-no-vendor-prefix: null
value-no-vendor-prefix: null
keyframes-name-pattern: null
color-function-notation: "legacy"
import-notation: "string"
# stylelint-config-recommended-scss
scss/comment-no-empty: null
scss/no-global-function-names: null
scss/operator-no-newline-before: null
scss/at-if-no-null: null