-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.stylelintrc.yml
78 lines (72 loc) · 2.06 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
78
defaultSeverity: warning
extends:
- stylelint-config-standard
- stylelint-config-recommended
- stylelint-config-sass-guidelines
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: null
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
- ignoreProperties:
- 'box-orient'
- ignoreAtRules: ['each', 'else', 'extend', 'for', 'function', 'if', 'include', 'mixin', 'return', 'while']
# Nesting
max-nesting-depth:
- 5
- ignore: ['blockless-at-rules', 'pseudo-classes']
# Name Formats
selector-class-pattern: null
scss/at-mixin-pattern: null
# 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
order/order: null
# 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/]