forked from Lix3nn53/goa-react-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.stylelintrc
38 lines (38 loc) · 834 Bytes
/
.stylelintrc
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
{
"extends": "stylelint-config-prettier",
"plugins": [
"stylelint-prettier"
],
"rules": {
"string-quotes": "single",
"indentation": 2,
"at-rule-no-vendor-prefix": true,
"media-feature-name-no-vendor-prefix": true,
"property-no-vendor-prefix": false,
"selector-no-vendor-prefix": true,
"value-no-vendor-prefix": true,
"declaration-no-important": true,
"selector-pseudo-class-no-unknown": [
true, { "ignorePseudoClasses": [ "global", "export", "import", "local" ] }
],
"property-no-unknown": [
true, { "ignoreProperties": [ "composes" ] }
],
"at-rule-no-unknown": [
true, { "ignoreAtRules": [ "value" ] }
],
},
"ignoreFiles": [
"node_modules",
"coverage",
"_public",
"**/__snapshots__/*",
"**/*.js",
"**/*.json",
"**/*.jpg",
"**/*.png",
"**/*.svg",
".*",
"**/*.md"
]
}