forked from tmea-tlip/www.tlip.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
stylelint.config.cjs
32 lines (32 loc) · 1000 Bytes
/
stylelint.config.cjs
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
module.exports = {
extends: ["stylelint-config-standard", "stylelint-config-property-sort-order-smacss"],
plugins: ["stylelint-scss"],
rules: {
"at-rule-no-unknown": null,
"scss/at-rule-no-unknown": [
true,
{
ignoreAtRules: ["tailwind", "apply", "variants", "responsive", "screen", "layer"]
}
],
"color-hex-length": "long",
indentation: null,
"at-rule-name-case": "lower",
"at-rule-name-space-after": "always-single-line",
"at-rule-semicolon-newline-after": "always",
"declaration-colon-newline-after": null,
"value-list-comma-newline-after": null,
"property-no-unknown": [
true,
{
ignoreProperties: ["font-named-instance"]
}
],
"selector-pseudo-class-no-unknown": [
true,
{
ignorePseudoClasses: ["global"]
}
]
}
};