-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy path.stylelintrc.json
More file actions
26 lines (26 loc) · 785 Bytes
/
.stylelintrc.json
File metadata and controls
26 lines (26 loc) · 785 Bytes
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
{
"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"]
}