forked from directus/directus
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.stylelintrc.json
More file actions
54 lines (49 loc) · 1.71 KB
/
.stylelintrc.json
File metadata and controls
54 lines (49 loc) · 1.71 KB
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
47
48
49
50
51
52
53
54
{
"extends": ["stylelint-config-standard"],
"plugins": ["stylelint-use-logical"],
"overrides": [
{
"files": ["**/*.scss"],
"extends": ["stylelint-config-standard-scss"]
},
{
"files": ["**/*.vue"],
"extends": ["stylelint-config-standard-scss", "stylelint-config-standard-vue/scss"]
}
],
"ignoreFiles": ["app/src/__histoire__/**"],
"rules": {
"alpha-value-notation": "number",
"at-rule-empty-line-before": [
"always",
{ "ignore": ["after-comment", "first-nested", "inside-block", "blockless-after-same-name-blockless"] }
],
"comment-empty-line-before": [
"always",
{
"except": ["first-nested"],
"ignore": ["after-comment", "stylelint-commands"]
}
],
"custom-property-empty-line-before": [
"always",
{ "except": ["after-comment", "after-custom-property", "first-nested"] }
],
"custom-property-pattern": null,
"declaration-empty-line-before": null,
"font-family-name-quotes": "always-unless-keyword",
"font-family-no-missing-generic-family-keyword": [true, { "ignoreFontFamilies": ["Material Symbols"] }],
"media-feature-range-notation": null,
"no-descending-specificity": null,
"property-no-vendor-prefix": [true, { "ignoreProperties": ["user-select", "appearance", "mask-image"] }],
"rule-empty-line-before": ["always", { "ignore": ["after-comment", "first-nested", "inside-block"] }],
"selector-class-pattern": null,
"selector-not-notation": null,
"selector-pseudo-element-no-unknown": [true, { "ignorePseudoElements": ["v-deep", "v-global", "v-slotted"] }],
"value-keyword-case": [
"lower",
{ "ignoreProperties": ["text-rendering"], "ignoreFunctions": ["v-bind"], "ignoreKeywords": ["currentColor"] }
],
"csstools/use-logical": "always"
}
}