-
Notifications
You must be signed in to change notification settings - Fork 260
/
.stylelintrc.js
59 lines (59 loc) · 2.48 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
module.exports = {
extends: ['stylelint-config-standard', 'stylelint-config-recess-order'],
plugins: ['stylelint-scss'],
rules: {
// "order/properties-alphabetical-order": true,
'color-no-invalid-hex': true,
'rule-empty-line-before': null,
// 16颜色使用长表示法
'color-hex-length': 'long',
// 16禁止颜色使用大写
'color-hex-case': 'lower',
'unit-whitelist': ['em', 'rem', '%', 's', 'px', 'vh', 'vw', 'deg'],
'declaration-colon-newline-after': null,
// 禁止在速记属性中使用冗余值(可自动修复) padding:10px 10px 10px; 需写成 padding: 10px;
'shorthand-property-no-redundant-values': true,
// 不允许属性值带供应商前缀 如:display: -webkit-flex;
'value-no-vendor-prefix': true,
// 禁止使用!important TODO: 临时注掉
// "declaration-no-important": false,
// 禁止将可合并的属性分开写,如分别写padding-[left|right|top|bottom],但如果四个少一个的话可以分开写,如只写 right, left,top
'declaration-block-no-redundant-longhand-properties': true,
// 一行可显示属性个数
'declaration-block-single-line-max-declarations': 1,
// 禁止选择器添加供应商前缀
'selector-no-vendor-prefix': true,
// 使用的函数名应小写
'function-name-case': 'lower',
// 网址禁止使用引号
'function-url-quotes': 'never',
// 多个函数间必须要有空格
'function-whitespace-after': 'always',
// 必须在小于1的数字前加0
'number-leading-zero': 'always',
// 不允许有bom前缀
'unicode-bom': 'never',
// 注释前需添加空格
'comment-whitespace-inside': 'always',
// 属性名应使用全小写
'at-rule-name-case': 'lower',
// 伪元素必须使用 ::
'selector-pseudo-element-colon-notation': 'double',
// 是否必须添加字体族 generic-family
'font-family-no-missing-generic-family-keyword': null,
/** This rule is basically a wrapper around the mentioned core rule,
but with added SCSS-specific @-directives. So if you use the core rule,
@if, @extend and other Sass-y things will get warnings.
You must to disable core rule to make this rule work:
*/
'at-rule-no-unknown': null,
'scss/at-rule-no-unknown': true,
// scss deep 写法必须时 ::v-deep , 需要在这一处将 :v-deep 添加为例外
'selector-pseudo-element-no-unknown': [
true,
{
ignorePseudoElements: 'v-deep'
}
]
}
}