-
-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy path.prettierrc
More file actions
38 lines (38 loc) · 650 Bytes
/
.prettierrc
File metadata and controls
38 lines (38 loc) · 650 Bytes
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
{
"tabWidth": 4,
"useTabs": true,
"singleQuote": true,
"printWidth": 150,
"trailingComma": "none",
"endOfLine": "auto",
"semi": true,
"bracketSpacing": true,
"bracketSameLine": false,
"arrowParens": "always",
"quoteProps": "as-needed",
"jsxSingleQuote": false,
"plugins": ["prettier-plugin-organize-imports"],
"overrides": [
{
"files": ["*.json", "*.jsonc"],
"options": {
"useTabs": true,
"tabWidth": 4
}
},
{
"files": ["*.yml", "*.yaml"],
"options": {
"useTabs": false,
"tabWidth": 2
}
},
{
"files": ["package.json"],
"options": {
"useTabs": false,
"tabWidth": 2
}
}
]
}