generated from tjx666/awesome-chrome-extension-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 30
/
.stylelintrc.json
33 lines (33 loc) · 879 Bytes
/
.stylelintrc.json
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
{
"extends": [
"stylelint-config-standard",
"stylelint-config-prettier",
"stylelint-config-recess-order"
],
"plugins": ["stylelint-declaration-block-no-ignored-properties", "stylelint-scss"],
"rules": {
"comment-empty-line-before": null,
"function-name-case": "lower",
"no-invalid-double-slash-comments": null,
"no-descending-specificity": null,
"declaration-empty-line-before": null
},
"overrides": [
{
"files": ["**/*.scss"],
"customSyntax": "postcss-scss"
},
{
"files": ["**/*.less"],
"customSyntax": "postcss-less"
}
],
"ignoreFiles": [
"node_modules/**/*",
"extension/**/*",
"public/**/*",
"**/*.d.ts",
"lib/**/*",
"src/styles/iconfont/**/*"
]
}