-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
95 lines (95 loc) · 2.18 KB
/
index.js
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
module.exports = {
extends: [
'stylelint-config-sass-guidelines',
'stylelint-config-standard-scss',
'stylelint-config-recess-order'
],
rules: {
'no-invalid-position-at-import-rule': null,
'at-rule-empty-line-before': null,
'no-descending-specificity': null,
'declaration-empty-line-before': null,
'scss/dollar-variable-pattern': null,
'scss/at-function-pattern': null,
'scss/double-slash-comment-whitespace-inside': null,
'scss/dollar-variable-empty-line-before': null,
'scss/double-slash-comment-empty-line-before': null,
'selector-class-pattern': '^[a-z]([a-z0-9-]+)?(__([a-z0-9]+-?)+)?(--([a-z0-9]+-?)+){0,2}$',
'scss/dollar-variable-colon-space-after': 'at-least-one-space',
'order/properties-alphabetical-order': null,
'selector-pseudo-element-colon-notation': 'single',
'max-nesting-depth': 3,
'selector-max-compound-selectors': 4,
'block-no-empty': true,
'selector-pseudo-class-no-unknown': true,
'selector-pseudo-element-no-unknown': true,
'length-zero-no-unit': true,
'selector-no-vendor-prefix': [
true,
{
ignoreSelectors: [
'/-moz-.*/',
'/-webkit-.*/'
]
}
],
'property-no-vendor-prefix': [
true,
{
ignoreProperties: [
'/animation.*/',
'/appearance.*/',
'/box-shadow.*/',
'/filter.*/',
'/transform.*/',
'/transition.*/'
]
}
],
'value-no-vendor-prefix': [
true,
{
ignoreValues: [
'/linear-gradient.*/'
]
}
],
'selector-no-qualifying-type': [
true,
{
ignore: [
'class'
]
}
],
'color-named': [
'never',
{
ignore: [
'inside-function'
]
}
],
'order/order': [
'custom-properties',
'dollar-variables',
'at-variables',
'declarations',
'rules',
{
type: 'at-rule',
hasBlock: true
}
],
'declaration-property-value-disallowed-list': [
{
border: [
'none'
],
outline: [
'none'
]
}
]
}
}