-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy path.stylelintrc.js
More file actions
26 lines (26 loc) · 842 Bytes
/
Copy path.stylelintrc.js
File metadata and controls
26 lines (26 loc) · 842 Bytes
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
module.exports = {
extends: ['stylelint-config-standard'],
rules: {
'declaration-block-trailing-semicolon': null,
'declaration-colon-newline-after': null,
'declaration-empty-line-before': null,
'font-family-no-missing-generic-family-keyword': null,
'function-name-case': null,
'length-zero-no-unit': null,
'no-descending-specificity': null,
'no-duplicate-selectors': null,
'no-empty-source': null,
'no-eol-whitespace': null,
'no-extra-semicolons': null,
'no-missing-end-of-source-newline': null,
'property-no-unknown': null,
'rule-empty-line-before': null,
'value-keyword-case': null,
indentation: null,
'comment-empty-line-before': null,
'declaration-colon-space-after': null,
'declaration-bang-space-before': null,
'declaration-colon-space-after': null,
'function-whitespace-after': null,
},
};