-
Notifications
You must be signed in to change notification settings - Fork 761
/
.stylelintrc.json
63 lines (63 loc) · 2 KB
/
.stylelintrc.json
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
55
56
57
58
59
60
61
62
63
{
"extends": [
"stylelint-config-standard",
"stylelint-config-recommended-scss",
"stylelint-config-recommended-vue",
"stylelint-prettier/recommended"
],
"rules": {
"alpha-value-notation": null,
"block-no-empty": null,
"color-function-notation": "legacy",
"declaration-block-no-duplicate-properties": null,
"declaration-block-no-redundant-longhand-properties": null,
"declaration-block-no-shorthand-property-overrides": null,
"declaration-block-single-line-max-declarations": null,
"font-family-no-missing-generic-family-keyword": null,
"function-calc-no-unspaced-operator": null,
"hue-degree-notation": null,
"function-no-unknown": null,
"keyframes-name-pattern": null,
"media-feature-range-notation": "prefix",
"no-descending-specificity": null,
"no-duplicate-selectors": null,
"number-max-precision": null,
"selector-class-pattern": null,
"selector-no-vendor-prefix": null,
"selector-pseudo-element-no-unknown": null,
"scss/at-extend-no-missing-placeholder": null,
"scss/at-import-partial-extension": null,
"scss/load-no-partial-leading-underscore": true,
"scss/at-rule-no-unknown": null,
"scss/dollar-variable-pattern": null,
"scss/double-slash-comment-whitespace-inside": null,
"scss/no-global-function-names": null,
"value-no-vendor-prefix": null,
"property-no-unknown": [true, { "ignoreProperties": ["scroll-snap-mode"] }],
"property-no-vendor-prefix": null,
"value-keyword-case": [
"lower",
{
"camelCaseSvgKeywords": true
}
]
},
"ignoreFiles": [
"public/assets/*.css",
"public/assets/chat/chat.css",
"public/assets/doorkeeper/**",
"public/assets/frontend/vite-dev/**",
"public/assets/frontend/vite/**",
"**/reset*.css",
"**/bootstrap*.css",
"**/codemirror.css",
"**/jquery*.css",
"**/cropper.css",
"**/fineuploader.css",
"**/qunit*.css",
"**/svg-dimensions.css",
"tmp/**",
"vendor/**",
"coverage/**"
]
}