-
Notifications
You must be signed in to change notification settings - Fork 123
/
.stylelintrc
39 lines (39 loc) · 1.13 KB
/
.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
35
36
37
38
39
{
"customSyntax": "postcss-less",
"extends": ["stylelint-config-standard"],
"rules": {
"selector-class-pattern": "^_?([a-z][a-z0-9]*)(-[a-z0-9]+)*$",
"custom-property-pattern": "^(@\\{[a-z]+(-[a-z]+)*\\}|[a-z]+(-[a-z]+)*)(-(@\\{[a-z]+(-[a-z]+)*\\}|[a-z]+(-[a-z]+)*))*$",
"alpha-value-notation": "number",
"value-no-vendor-prefix": null,
"property-no-vendor-prefix": null,
"color-function-notation": "legacy",
"declaration-empty-line-before": null,
"no-descending-specificity": null,
"no-empty-source": null,
"declaration-colon-newline-after": null,
"selector-not-notation": null,
"at-rule-no-unknown": [
true,
{
"ignoreAtRules": ["plugin"]
}
],
"function-no-unknown": null,
"import-notation": "string",
"declaration-block-no-redundant-longhand-properties": [
true,
{
"ignoreShorthands": ["inset"]
}
],
"media-feature-range-notation": "prefix"
},
"ignoreFiles": ["**/.*.*", "**/*.ts", "**/*.js", "**/*.json", "**/*.md"],
"overrides": [
{
"files": ["**/*.vue"],
"customSyntax": "postcss-html"
}
]
}