forked from Anixuil/Kunlun-Design-Vue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.stylelintrc.js
30 lines (30 loc) · 1.12 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
module.exports = {
extends: 'stylelint-config-standard-vue',
customSyntax: 'postcss-html',
rules: {
// 颜色值小写
'color-hex-case': 'lower',
// 注释前无须空行
'comment-empty-line-before': 'never',
// 使用数字或命名的 (可能的情况下) font-weight 值
'font-weight-notation': null,
// 在函数的逗号之后要求有一个换行符或禁止有空白
'function-comma-newline-after': null,
// 在函数的括号内要求有一个换行符或禁止有空白
'function-parentheses-newline-inside': null,
// url使用引号
'function-url-quotes': 'always',
// 字符串使用单引号
'string-quotes': 'single',
// 缩进
indentation: 4,
// 禁止低优先级的选择器出现在高优先级的选择器之后
'no-descending-specificity': null,
// 禁止空源
'no-empty-source': null,
// 禁止缺少文件末尾的换行符
'no-missing-end-of-source-newline': null,
//选择器匹配
'selector-class-pattern': null
}
}