-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.stylelintrc.js
43 lines (43 loc) · 1.29 KB
/
.stylelintrc.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
38
39
40
41
42
43
/**
* AUTO GENERATED FILE - DO NOT EDIT
* Any changes you make to this file will be overwritten by @digittl/auto-lint
* If you'd like to customize this configuration, create a file called: '.stylelintrc.project.js' in
* your project root.
*
* Note: Arrays will be concatenated. If you'd like to replace the array, just make the first
* item in the array '!merge-strategy:replace'
*/
module.exports = require('@digittl/lintr')('.stylelintrc.project.js', {
extends: [
'stylelint-config-recommended',
'stylelint-config-sass-guidelines',
'stylelint-config-prettier',
],
plugins: ['stylelint-order'],
rules: {
'no-descending-specificity': null,
'at-rule-no-unknown': null,
'max-nesting-depth': null,
'font-family-no-missing-generic-family-keyword': null,
'selector-no-qualifying-type': null,
'selector-max-compound-selectors': null,
'selector-class-pattern': null,
'selector-pseudo-element-no-unknown': null,
'selector-max-id': null,
'no-invalid-position-at-import-rule': null,
'scss/at-mixin-pattern': null,
'scss/at-rule-no-unknown': [
true,
{
ignoreAtRules: [
'tailwind',
'apply',
'layer',
'variants',
'responsive',
'screen',
],
},
],
},
});