-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
.stylelintrc.js
44 lines (44 loc) · 855 Bytes
/
.stylelintrc.js
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
/** @type {import('stylelint').Config} */
export default {
extends: [
"stylelint-config-standard-scss",
"stylelint-config-standard-vue/scss"
],
plugins: [
"@stylistic/stylelint-plugin"
],
rules: {
"@stylistic/selector-combinator-space-before": "always",
"@stylistic/max-line-length": null,
"custom-property-pattern": null,
"@stylistic/indentation": [
2,
{
baseIndentLevel: 1
}
],
"color-function-notation": null,
"no-empty-source": null,
"value-no-vendor-prefix": [
true,
{
ignoreValues: ["inline-box"]
}
]
},
defaultSeverity: "warning",
overrides: [
{
files: [
"**/*.scss"
],
customSyntax: "postcss-scss"
},
{
files: [
"**/*.vue"
],
customSyntax: "postcss-html"
}
]
}