forked from VATSIM-Radar/vatsim-radar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.stylelintrc.cjs
executable file
·50 lines (50 loc) · 1.5 KB
/
.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
module.exports = {
defaultSeverity: 'warning',
plugins: [
'@stylistic/stylelint-plugin',
],
extends: [
'stylelint-config-standard',
'stylelint-config-recommended-scss',
'stylelint-config-recommended-vue/scss',
'stylelint-config-clean-order',
],
rules: {
'no-descending-specificity': null,
'selector-pseudo-class-no-unknown': [
true,
{
ignorePseudoClasses: [
'export',
'deep',
'global',
'slotted',
],
},
],
'@stylistic/indentation': [
4,
{
ignore: [
'inside-parens',
],
},
],
'property-no-unknown': null,
'selector-class-pattern': null,
'selector-id-pattern': null,
'declaration-empty-line-before': null,
'function-name-case': null,
'alpha-value-notation': null,
'value-keyword-case': null,
'color-function-notation': null,
'declaration-block-no-redundant-longhand-properties': [true, { ignoreShorthands: ['flex-flow'] }],
'custom-property-pattern': null,
'keyframes-name-pattern': null,
'import-notation': null,
'media-feature-range-notation': null,
'at-rule-empty-line-before': null,
'scss/no-global-function-names': null,
'no-duplicate-selectors': null,
},
};