-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.stylelintrc.js
More file actions
30 lines (30 loc) · 822 Bytes
/
.stylelintrc.js
File metadata and controls
30 lines (30 loc) · 822 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
27
28
29
30
module.exports = {
// processors: ['stylelint-processor-styled-components'],
extends: [
'stylelint-config-standard',
'stylelint-config-styled-components',
'stylelint-config-rational-order',
],
syntax: 'css-in-js',
rules: {
'block-closing-brace-newline-before': 'always',
'at-rule-no-unknown': null,
'order/properties-order': [],
'plugin/rational-order': [
true,
{
'border-in-box-model': true,
'empty-line-between-groups': false,
},
],
'no-invalid-double-slash-comments': null,
'declaration-empty-line-before': [
null,
{
ignore: ['after-comment', 'after-declaration', 'first-nested', 'inside-single-line-block'],
},
],
'value-keyword-case': null,
},
ignoreFiles: ['node_modules', '.lintstagedrc'],
};