-
Notifications
You must be signed in to change notification settings - Fork 2
/
stylelint.config.js
29 lines (29 loc) · 1.14 KB
/
stylelint.config.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
module.exports = {
extends: 'stylelint-config-standard',
rules: {
'at-rule-empty-line-before': null,
'at-rule-no-unknown': null,
'block-closing-brace-empty-line-before': null,
'block-opening-brace-space-before': null,
'comment-empty-line-before': null,
'declaration-block-no-duplicate-properties': null,
'declaration-block-no-redundant-longhand-properties': null,
'declaration-block-semicolon-newline-after': null,
'declaration-colon-newline-after': null,
'declaration-colon-space-after': null,
'declaration-empty-line-before': null,
'font-family-name-quotes': null,
'function-comma-newline-after': null,
'function-comma-space-after': null,
'function-url-quotes': null,
'max-empty-lines': null,
'number-leading-zero': null,
'rule-empty-line-before': null,
'selector-list-comma-newline-after': null,
'selector-max-specificity': '0,6,0',
'selector-pseudo-element-colon-notation': 'single',
'no-descending-specificity': null,
'string-quotes': null,
indentation: null
}
}