-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstylelint.config.mjs
More file actions
47 lines (47 loc) · 1.14 KB
/
stylelint.config.mjs
File metadata and controls
47 lines (47 loc) · 1.14 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
export default {
extends: ["stylelint-config-standard"],
ignoreFiles: [
"**/.next/**",
"**/node_modules/**",
"**/storybook-static/**",
"**/coverage/**",
"**/out/**",
"**/dist/**",
],
rules: {
"alpha-value-notation": null,
"at-rule-empty-line-before": null,
"at-rule-no-unknown": [
true,
{
ignoreAtRules: [
"theme",
"source",
"plugin",
"utility",
"custom-variant",
"variant",
"apply",
"reference",
"tailwind",
"config",
"page",
"bottom-left",
"bottom-right",
],
},
],
"color-function-alias-notation": null,
"color-function-notation": null,
"comment-empty-line-before": null,
"custom-property-empty-line-before": null,
"custom-property-pattern": null,
"declaration-empty-line-before": null,
"import-notation": null,
"keyframe-selector-notation": null,
"media-feature-range-notation": null,
"nesting-selector-no-missing-scoping-root": null,
"rule-empty-line-before": null,
"value-keyword-case": null,
},
}