-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.stylelintrc.cjs
32 lines (32 loc) · 938 Bytes
/
.stylelintrc.cjs
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
module.exports = {
extends: [
'stylelint-config-standard',
'stylelint-config-rational-order',
'stylelint-config-prettier',
'stylelint-config-html',
],
plugins: ['stylelint-order', 'stylelint-prettier'],
overrides: [
{
files: ['**/*.less'],
customSyntax: 'postcss-less',
},
],
rules: {
'prettier/prettier': true,
'selector-pseudo-class-no-unknown': null,
'no-empty-source': null,
'no-descending-specificity': null,
'at-rule-no-unknown': null,
'font-family-no-missing-generic-family-keyword': null,
'selector-type-no-unknown': null,
'declaration-colon-newline-after': null,
'value-list-comma-newline-after': null,
'color-function-notation': null,
'declaration-block-trailing-semicolon': null,
'selector-class-pattern': null,
'value-no-vendor-prefix': null,
'keyframes-name-pattern': null,
'property-no-vendor-prefix': null,
},
};