generated from sayheylaura/react-sass-project-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstylelint.config.js
26 lines (26 loc) · 854 Bytes
/
stylelint.config.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
module.exports = {
defaultSeverity: 'warning',
extends: 'stylelint-config-standard',
plugins: ['stylelint-order', 'stylelint-scss'],
ignoreFiles: ['./node_modules', './src/assets/styles/base/_normalize.sass'],
rules: {
'block-closing-brace-empty-line-before': null,
'block-closing-brace-newline-after': null,
'block-closing-brace-newline-before': null,
'block-closing-brace-space-after': null,
'block-closing-brace-space-before': null,
'block-opening-brace-newline-after': null,
'block-opening-brace-newline-before': null,
'block-opening-brace-space-after': null,
'block-opening-brace-space-before': null,
'declaration-block-trailing-semicolon': 'never',
'number-leading-zero': 'never',
'order/properties-alphabetical-order': true,
'rule-empty-line-before': [
'always',
{
ignore: ['after-comment']
}
]
}
};