-
Notifications
You must be signed in to change notification settings - Fork 2
/
.stylelintrc.yml
77 lines (70 loc) · 1.78 KB
/
.stylelintrc.yml
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
defaultSeverity: warning
extends:
- stylelint-config-standard
- stylelint-config-recommended
plugins:
- stylelint-scss
rules:
# Line Spacing
rule-empty-line-before:
- always-multi-line
- ignore:
- after-comment
- first-nested
- inside-block
# Disallows
selector-max-id: 2
comment-no-empty: true
declaration-block-no-duplicate-properties: true
block-no-empty:
- true
- ignore:
- comments
no-descending-specificity:
- true
- ignore:
- selectors-within-list
no-extra-semicolons: true
color-no-invalid-hex: true
number-no-trailing-zeros: true
length-zero-no-unit: true
scss/at-extend-no-missing-placeholder: null
selector-no-qualifying-type:
- true
- ignore:
- attribute
- class
- id
property-no-unknown:
- true
# Nesting
max-nesting-depth:
- 5
- ignore: ["blockless-at-rules", "pseudo-classes"]
# Name Formats (BEM)
selector-class-pattern: ^[a-z]([a-z0-9-]+)?(__([a-z0-9]+-?)+)?(--([a-z0-9]+-?)+){0,2}$
# Style Guide
indentation: 2
color-named: never
declaration-block-trailing-semicolon: always
unit-case: lower
color-hex-case: lower
number-leading-zero: always
unit-no-unknown:
- true
- ignoreUnits:
- /^[-+][\d$(]/
font-family-no-duplicate-names: true
string-quotes: single
selector-max-compound-selectors: 6
# Inner Spacing
function-calc-no-unspaced-operator: true
declaration-block-semicolon-newline-after: always
block-opening-brace-space-before: always
block-opening-brace-newline-after: always
block-closing-brace-newline-after: always
declaration-bang-space-after: never
declaration-colon-space-after: always
# Final Items
scss/at-import-partial-extension-blacklist: [/css/]
at-rule-no-unknown: null