-
Notifications
You must be signed in to change notification settings - Fork 85
/
.stylelintrc.yaml
36 lines (34 loc) · 938 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
processors:
- stylelint-processor-styled-components
extends:
- stylelint-config-recommended
- stylelint-config-prettier
- stylelint-config-styled-components
# rules:
# declaration-empty-line-before: never
# module.exports = {
# extends: ['stylelint-config-standard'],
# rules: {
# // 'no-empty-source': null,
# // 'declaration-empty-line-before': null,
# // 'no-missing-end-of-source-newline': null,
# // indentation: [
# // 'tab',
# // {
# // except: ['value'],
# // },
# // ],
# // 'block-no-empty': null,
# // 'color-no-invalid-hex': true,
# // 'declaration-colon-space-after': 'always',
# // 'no-eol-whitespace': null,
# 'rule-empty-line-before': [
# 'always',
# {
# except: ['first-nested'],
# ignore: ['after-comment'],
# },
# ],
# // 'unit-whitelist': ['em', 'rem', '%', 's', 'vw', 'vh', 'px'],
# },
# };