forked from zhenlab-ltri/NemaNode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.sasslintrc
54 lines (52 loc) · 1.35 KB
/
.sasslintrc
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
{
"files": {
"include": 'src/client/scss/*.scss',
"ignore": [
"src/client/scss/jquery-contextMenu-2.7.1.min.scss",
"src/client/scss/jquery-ui-1.12.1.min.scss",
"src/client/scss/vue-select.scss",
"src/client/scss/neuron-trajectory.scss"
]
},
"options": {
"merge-default-rules": true
},
"rules": {
"trailing-semicolon": 2,
"no-duplicate-properties": 2,
"pseudo-element": 2,
"variable-name-format": 2,
"class-name-format": 2,
"one-declaration-per-line": 2,
"border-zero": 2,
"attribute-quotes": 2,
"indentation": 2,
"space-before-brace": 2,
"space-after-comma": 2,
"space-around-operator": 2,
"quotes": 2,
"no-vendor-prefixes": 2,
"no-important": 1,
"no-color-literals": 1,
"no-mergeable-selectors": 1,
"hex-notation": 1,
"no-trailing-whitespace": 0,
"no-qualifying-elements": 0,
"declarations-before-nesting": 0,
"single-line-per-selector": 0,
"no-css-comments": 0,
"shorthand-values": 0,
"zero-unit": 0,
"force-element-nesting": 0,
"force-attribute-nesting": 0,
"force-pseudo-nesting": 0,
"no-color-keywords": 0,
"leading-zero": 0,
"property-sort-order": 0,
"no-ids": 0,
"empty-line-between-blocks": 0,
"extends-before-declarations": 0,
"placeholder-in-extend": 0,
"hex-length": 0
}
}