-
Notifications
You must be signed in to change notification settings - Fork 2
/
stylelint.config.js
35 lines (35 loc) · 1.09 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
/** @type {import("stylelint").Config} */
export default {
root: true,
// 继承某些已有的规则
extends: [
'stylelint-config-standard', // css 标准配置
'stylelint-config-standard-scss', // scss 标准配置
'stylelint-config-recess-order', // CSS 属性排序配置
],
plugins: ['stylelint-order'],
rules: {
'no-descending-specificity': null, // 禁止在具有较高优先级的选择器后出现被其覆盖的较低优先级的选择器
'no-empty-source': null, // 关闭禁止空源码
'selector-class-pattern': null, // 关闭强制选择器类名的格式
'property-no-unknown': null, // 禁止未知的属性(true 为不允许)
'value-no-vendor-prefix': null, // 关闭 属性值前缀 --webkit-box
'property-no-vendor-prefix': null, // 关闭 属性前缀 -webkit-mask
'selector-pseudo-class-no-unknown': [
true,
{
ignorePseudoClasses: ['global', 'export'],
},
],
},
ignoreFiles: [
'**/*.js',
'**/*.jsx',
'**/*.tsx',
'**/*.ts',
'**/*.json',
'**/*.md',
'**/*.yaml',
'**/*.cjs',
],
};