Newer
Older
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
extends:
- stylelint-config-sass-guidelines
- stylelint-config-prettier
plugins:
- stylelint-selector-pseudo-class-lvhfa
rules:
block-no-empty: null
color-named:
- never
- ignore:
- 'inside-function'
max-nesting-depth: 10
selector-max-compound-selectors: 10
no-empty-first-line: true
order/order:
- - type: at-rule
hasBlock: false
- custom-properties
- declarations
- unspecified: ignore
disableFix: true
plugin/selector-pseudo-class-lvhfa: true
property-no-vendor-prefix: null
selector-attribute-brackets-space-inside: never
selector-class-pattern:
# "piece" regex:
# [a-zA-Z0-9]+
# dash-separated pieces:
# [a-zA-Z][a-zA-Z0-9]*(?:-[a-zA-Z][a-zA-Z0-9]*)*
#
# Block Element (optional) Modifier (also optional)
# ---------------------------------------------- ----------------------------------------------- -----------------------------------------------
- '^[a-zA-Z][a-zA-Z0-9]*(?:-[a-zA-Z0-9]+)*(?:__[a-zA-Z0-9]+(?:-[a-zA-Z0-9]+)*)?(?:--[a-zA-Z0-9]+(?:-[a-zA-Z0-9]+)*)?$'
selector-no-qualifying-type:
- true
- ignore:
- attribute
string-no-newline: true
scss/at-import-partial-extension-blacklist:
- 'less'
- 'sass'
scss/at-mixin-pattern:
# "piece" regex:
# [a-zA-Z0-9]+
# dash-separated pieces:
# [a-zA-Z][a-zA-Z0-9]*(?:-[a-zA-Z][a-zA-Z0-9]*)*
#
# Block Element (optional) Modifier (also optional)
# ---------------------------------------------- ----------------------------------------------- -----------------------------------------------
- '^[a-zA-Z][a-zA-Z0-9]*(?:-[a-zA-Z0-9]+)*(?:__[a-zA-Z0-9]+(?:-[a-zA-Z0-9]+)*)?(?:--[a-zA-Z0-9]+(?:-[a-zA-Z0-9]+)*)?$'
scss/percent-placeholder-pattern:
# "piece" regex:
# [a-zA-Z0-9]+
# dash-separated pieces:
# [a-zA-Z][a-zA-Z0-9]*(?:-[a-zA-Z][a-zA-Z0-9]*)*
#
# Block Element (optional) Modifier (also optional)
# ---------------------------------------------- ----------------------------------------------- -----------------------------------------------
- '^[a-zA-Z][a-zA-Z0-9]*(?:-[a-zA-Z0-9]+)*(?:__[a-zA-Z0-9]+(?:-[a-zA-Z0-9]+)*)?(?:--[a-zA-Z0-9]+(?:-[a-zA-Z0-9]+)*)?$'