-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
28 lines (28 loc) · 959 Bytes
/
index.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
module.exports = {
extends: ['stylelint-config-standard', 'stylelint-config-recess-order'],
plugins: ['stylelint-order'],
rules: {
'declaration-block-no-duplicate-properties': true,
'no-descending-specificity': null,
'rule-empty-line-before': null,
'at-rule-empty-line-before': null,
'selector-pseudo-class-no-unknown': [
true,
{
ignorePseudoClasses: ['global'],
},
],
'color-hex-length': 'long',
'order/order': ['custom-properties', 'declarations'],
'value-keyword-case': ['lower', { camelCaseSvgKeywords: true }],
'alpha-value-notation': null,
'color-function-notation': null,
'custom-property-pattern': null,
'declaration-block-no-redundant-longhand-properties': null,
'keyframes-name-pattern': null,
'selector-class-pattern': null,
'selector-id-pattern': null,
'selector-no-vendor-prefix': null,
'shorthand-property-no-redundant-values': null,
},
}