-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
37 lines (34 loc) · 1.23 KB
/
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
29
30
31
32
33
34
35
36
37
module.exports = {
extends: ['@linters/stylelint-config', 'stylelint-config-rational-order'],
overrides: [
{
files: ['*.scss', '**/*.scss'],
customSyntax: require('postcss-scss'),
plugins: ['stylelint-scss'],
rules: {
//
// Turn off base rules
//
'at-rule-no-unknown': null,
'selector-type-no-unknown': null,
'no-empty-source': null,
// TODO: fix false positive
'no-unknown-animations': null,
//
// Stylelint SCSS
//
'scss/at-extend-no-missing-placeholder': true,
'scss/at-function-pattern': '^[a-z]+([a-z0-9-]+[a-z0-9]+)?$',
'scss/at-import-no-partial-leading-underscore': true,
'scss/at-import-partial-extension-blacklist': ['scss'],
'scss/at-mixin-pattern': '^[a-z]+([a-z0-9-]+[a-z0-9]+)?$',
'scss/at-rule-no-unknown': true,
'scss/dollar-variable-colon-space-after': 'always',
'scss/dollar-variable-colon-space-before': 'never',
'scss/dollar-variable-pattern': '^[_]?[a-z]+([a-z0-9-]+[a-z0-9]+)?$',
'scss/percent-placeholder-pattern': '^[a-z]+([a-z0-9-]+[a-z0-9]+)?$',
'scss/selector-no-redundant-nesting-selector': true,
},
},
],
}