forked from WorldBrain/Memex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.stylelintrc.js
30 lines (30 loc) · 1.16 KB
/
.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
module.exports = {
extends: 'stylelint-config-standard',
rules: {
indentation: null,
'font-family-no-missing-generic-family-keyword': null,
'shorthand-property-no-redundant-values': null,
'font-family-name-quotes': 'always-unless-keyword',
'function-url-quotes': 'always',
'selector-attribute-quotes': 'always',
'string-quotes': 'single',
'at-rule-no-vendor-prefix': true,
'media-feature-name-no-vendor-prefix': true,
'property-no-vendor-prefix': true,
'selector-no-vendor-prefix': true,
'value-no-vendor-prefix': true,
'declaration-no-important': true,
'value-list-comma-newline-after': null,
'declaration-colon-newline-after': null,
'declaration-empty-line-before': null,
'length-zero-no-unit': null,
'function-url-scheme-whitelist': ['data'],
'selector-descendant-combinator-no-non-space': null,
'selector-combinator-space-before': null,
'no-descending-specificity': null,
"at-rule-no-unknown": null,
"property-no-unknown":[true, {
"ignoreProperties":["composes"]
}],
},
}