-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy path.stylelintrc
34 lines (34 loc) · 907 Bytes
/
.stylelintrc
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
{
"ignoreFiles": [
"**/*.js",
"**/*.md"
],
"overrides": [
{
"files": ["**/*.(scss|css|html|vue)"],
"customSyntax": "postcss-scss"
},
{
"files": ["**/*.(html|vue)"],
"customSyntax": "postcss-html"
}
],
"extends": "stylelint-config-standard-scss",
"rules": {
"at-rule-no-unknown": null,
"no-empty-source": null,
"rule-empty-line-before": null,
"at-rule-empty-line-before": null,
"declaration-empty-line-before": null,
"no-missing-end-of-source-newline": null,
"selector-list-comma-newline-after": null,
"unit-case": null,
"comment-empty-line-before": null,
"no-descending-specificity": null,
"selector-class-pattern": null,
"function-url-quotes": null,
"font-family-no-missing-generic-family-keyword": null,
"scss/dollar-variable-pattern": null,
"scss/no-global-function-names": null
}
}