forked from mathiasbynens/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.stylelintrc
63 lines (63 loc) · 1.56 KB
/
.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
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
extends:
- stylelint-config-standard
- stylelint-config-styled-components
ignoreFiles:
- node_modules/
- bower_components/
- "**/*.js"
plugins:
- stylelint-scss
rules:
at-rule-empty-line-before:
- always
- except:
- blockless-after-same-name-blockless
- first-nested
ignore:
- after-comment
at-rule-no-unknown:
- true
- ignoreAtRules:
- function
- if
- include
- extend
- mixin
- each
- tailwind
- apply
block-no-empty: true
color-no-invalid-hex: true
declaration-block-no-duplicate-properties: true
declaration-block-single-line-max-declarations: 0
declaration-block-trailing-semicolon: always
declaration-colon-space-after: always
declaration-colon-space-before: never
declaration-empty-line-before:
- always
- except:
- after-declaration
- first-nested
ignore:
- after-comment
function-comma-space-after: always
function-url-quotes: never
max-empty-lines: 5
media-feature-colon-space-after: always
media-feature-colon-space-before: never
media-feature-name-no-vendor-prefix: true
number-leading-zero: always
number-no-trailing-zeros: true
property-no-vendor-prefix: true
rule-empty-line-before:
- always
- except:
- first-nested
ignore:
- after-comment
selector-list-comma-newline-after: always
selector-list-comma-space-before: never
selector-max-id: 1
selector-pseudo-element-colon-notation: single
string-quotes: single
value-no-vendor-prefix: true