forked from aframevr/aframe-inspector
-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstylelint.config.js
More file actions
26 lines (26 loc) · 758 Bytes
/
stylelint.config.js
File metadata and controls
26 lines (26 loc) · 758 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'],
plugins: ['stylelint-order'],
ignoreFiles: ['src/style/themes.css'],
rules: {
'alpha-value-notation': null,
'color-function-alias-notation': null,
'color-function-notation': null,
'declaration-property-value-no-unknown': null,
'import-notation': null,
'media-feature-range-notation': 'prefix',
'no-descending-specificity': null,
'no-invalid-position-at-import-rule': null,
'selector-class-pattern': null,
'selector-id-pattern': null,
'selector-not-notation': null,
'value-keyword-case': null,
'order/properties-alphabetical-order': true
},
overrides: [
{
files: ['**/*.styl'],
customSyntax: 'postcss-styl'
}
]
};