-
Notifications
You must be signed in to change notification settings - Fork 7
/
stylelint.config.js
33 lines (33 loc) · 941 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
27
28
29
30
31
32
33
module.exports = {
extends: ['stylelint-config-standard', 'stylelint-config-recommended-scss', 'stylelint-prettier/recommended'],
plugins: ['stylelint-scss', 'stylelint-no-unsupported-browser-features', 'stylelint-prettier'],
rules: {
'prettier/prettier': true,
'selector-no-qualifying-type': null,
'max-nesting-depth': null,
'at-rule-no-unknown': null,
'at-rule-empty-line-before': null,
'no-descending-specificity': null,
'selector-max-compound-selectors': 5,
'no-empty-source': null,
'selector-pseudo-element-no-unknown': [
true,
{
ignorePseudoElements: ['ng-deep']
}
],
'plugin/no-unsupported-browser-features': [
true,
{
severity: 'warning'
}
],
'scss/at-rule-no-unknown': [
true,
{
ignoreAtRules: ['tailwind', 'apply', 'variants', 'responsive', 'screen']
}
],
'import-notation': null
}
};