-
Notifications
You must be signed in to change notification settings - Fork 17
/
.stylelintrc.yaml
36 lines (28 loc) · 980 Bytes
/
.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
---
extends: stylelint-config-standard
rules:
max-nesting-depth: 2
no-unknown-animations: true
rule-empty-line-before:
- always
- except: ['after-single-line-comment', 'first-nested']
import-notation: url
selector-type-case: lower
value-keyword-case: lower
font-family-name-quotes: always-where-recommended
color-function-notation: legacy
alpha-value-notation: number
custom-property-empty-line-before: never
media-feature-range-notation: prefix
comment-empty-line-before:
- always
- except: ['first-nested']
comment-whitespace-inside: always
comment-word-disallowed-list: ['TODO', 'FIXME']
# Remove these rules eventually, see https://scuttle.atlassian.net/browse/TT-56
property-no-vendor-prefix: null
value-no-vendor-prefix: null
at-rule-no-vendor-prefix: null
# Disable this rule for now, it produces hundreds of incidents
# and would require significant refactoring to resolve.
no-descending-specificity: null