-
Notifications
You must be signed in to change notification settings - Fork 49
/
.stylelintrc.js
27 lines (27 loc) · 989 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
module.exports = {
extends: 'stylelint-config-standard',
rules: {
'at-rule-empty-line-before': null,
'at-rule-name-space-after': null,
'at-rule-semicolon-newline-after': null,
'block-closing-brace-newline-before': null,
'comment-empty-line-before': null,
'declaration-block-semicolon-newline-after': null,
'declaration-block-single-line-max-declarations': 50,
'declaration-empty-line-before': null,
'declaration-no-important': true,
'function-comma-newline-after': null,
'function-comma-space-after': null,
'function-parentheses-newline-inside': null,
'function-max-empty-lines': null,
indentation: null,
'max-nesting-depth': 3,
'no-descending-specificity': null,
'rule-empty-line-before': null,
'selector-descendant-combinator-no-non-space': null,
'selector-list-comma-newline-after': 'always',
'selector-max-id': 0,
'selector-pseudo-element-colon-notation': null,
'string-quotes': null,
},
};