-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathstylelint.config.js
44 lines (44 loc) · 1.01 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
module.exports = {
root: true,
extends: [
'stylelint-config-standard-scss',
'stylelint-config-recommended-vue',
'stylelint-config-recess-order',
],
customSyntax: 'postcss-html',
overrides: [
{
files: ['**/*.{css,scss,vue}'],
customSyntax: 'postcss-scss',
},
],
ignoreFontFamilies: ['iconfont'],
rules: {
'at-rule-no-unknown': null,
'scss/at-rule-no-unknown': [true,
{
ignoreAtRules: [
'tailwind',
'apply',
'variants',
'responsive',
'screen',
'function',
'if',
'each',
'include',
'mixin',
],
},
],
'selector-pseudo-class-no-unknown': [true,
{ ignorePseudoClasses: ['v-deep'] },
],
'scss/at-import-partial-extension': 'never',
'no-duplicate-selectors': null,
'selector-class-pattern': null,
'no-descending-specificity': null,
'unit-case': null,
},
ignoreFiles: ['**/*.js', '**/*.jsx', '**/*.tsx', '**/*.ts'],
}