-
Notifications
You must be signed in to change notification settings - Fork 0
/
.stylelintrc.js
37 lines (37 loc) · 950 Bytes
/
.stylelintrc.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
module.exports = {
extends: 'stylelint-config-sass-guidelines',
'plugins': [
'stylelint-scss'
],
rules: {
'at-rule-no-vendor-prefix': null,
'media-feature-name-no-vendor-prefix': null,
'property-no-vendor-prefix': null,
'selector-no-vendor-prefix': null,
'value-no-vendor-prefix': null,
'function-url-no-scheme-relative': null,
'number-leading-zero': 'never',
'selector-list-comma-newline-after': 'always-multi-line',
'max-nesting-depth': null,
'selector-max-compound-selectors': null,
'selector-no-qualifying-type': null,
'selector-max-id': null,
'selector-class-pattern': null,
'function-url-quotes': [
'always',
{ 'except': ['empty'] }
],
'order/order': [
[
'dollar-variables',
'custom-properties',
{
'type': 'at-rule',
'name': 'extend'
},
'declarations',
'rules'
]
],
}
}