-
Notifications
You must be signed in to change notification settings - Fork 0
/
.stylelintrc
46 lines (46 loc) · 1.28 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
40
41
42
43
44
45
46
{
"extends": [
"stylelint-config-standard",
"stylelint-config-standard-scss",
"stylelint-config-prettier-scss"
],
"ignoreFiles": [
"**/*.{js,mjs,jsx,ts,tsx,json,md,mdx}",
"test/*{.css,.css.map}"
],
"rules": {
"annotation-no-unknown": [
true,
{
"ignoreAnnotations": ["default"]
}
],
"at-rule-empty-line-before": null,
"custom-property-pattern": "^([a-zA-Z0-9]*)(--[a-zA-Z0-9]+)*$",
"declaration-block-no-redundant-longhand-properties": null,
"declaration-colon-newline-after": null,
"function-name-case": null,
"function-no-unknown": null,
"keyframes-name-pattern": null,
"max-line-length": null,
"no-descending-specificity": null,
"property-no-vendor-prefix": null,
"scss/at-function-pattern": null,
"scss/at-rule-conditional-no-parentheses": null,
"scss/at-mixin-pattern": null,
"scss/dollar-variable-pattern": null,
"scss/percent-placeholder-pattern": null,
"selector-class-pattern": null,
"selector-id-pattern": null,
"selector-no-vendor-prefix": null,
"value-list-comma-newline-after": null,
"media-query-no-invalid": null,
"media-feature-range-notation": "prefix",
"unit-no-unknown": [
true,
{
"ignoreUnits": ["pxv"]
}
]
}
}