-
Notifications
You must be signed in to change notification settings - Fork 339
/
.stylelintrc.js
35 lines (35 loc) · 1.3 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
31
32
33
34
35
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': null,
'value-list-comma-newline-after': null,
'declaration-colon-newline-after': null,
'no-missing-end-of-source-newline': null,
'selector-combinator-space-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'],
},
],
},
}