-
Notifications
You must be signed in to change notification settings - Fork 0
/
.stylelintrc.cjs
39 lines (39 loc) · 1.38 KB
/
.stylelintrc.cjs
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
module.exports = {
extends: [
'stylelint-config-rational-order',
"stylelint-config-prettier", // 配置stylelint和prettier兼容
],
plugins: ["stylelint-less"],
customSyntax: "postcss-less", // less 文件单行注释
rules: {
// 未知检查
"unit-no-unknown": null,
"at-rule-no-unknown": null,
// indentation: 4, // 指定缩进空格
// 颜色值小写
"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",
// 禁止低优先级的选择器出现在高优先级的选择器之后
"no-descending-specificity": null,
// 禁止空源
"no-empty-source": null,
// 禁止缺少文件末尾的换行符
"no-missing-end-of-source-newline": null,
"selector-class-pattern": null,
"selector-pseudo-class-no-unknown": null,
"keyframes-name-pattern": null,
"no-invalid-double-slash-comments": null,
'function-no-unknown': null
}
};