-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.stylelintrc.js
24 lines (23 loc) · 888 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
module.exports = {
//--------------------------------------------------------------------------
// Extends
//--------------------------------------------------------------------------
'extends': [
'stylelint-config-sass-guidelines',
'stylelint-config-recess-order'
],
//--------------------------------------------------------------------------
// Rules
//--------------------------------------------------------------------------
'rules': {
'indentation': [4],
'color-hex-case': ['lower'],
'max-nesting-depth': [6],
'selector-no-qualifying-type': null,
'shorthand-property-no-redundant-values': null,
'selector-max-id': null,
'selector-max-compound-selectors': null,
'order/properties-alphabetical-order': null,
'selector-list-comma-newline-after': null
}
}