-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.prettierrc.json
More file actions
40 lines (40 loc) · 839 Bytes
/
.prettierrc.json
File metadata and controls
40 lines (40 loc) · 839 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
39
40
{
"endOfLine": "crlf",
"trimTrailingWhitespace": true,
"insertFinalNewline": true,
"requirePragma": false,
"insertPragma": false,
"overrides": [
{
"files": "*.{js,ts,jsx,tsx}",
"options": {
"printWidth": 80,
"arrowParens": "always",
"bracketSpacing": true,
"proseWrap": "always",
"semi": false,
"singleQuote": true,
"tabWidth": 2,
"useTabs": false,
"trailingComma": "none",
"jsxBracketSameLine": false,
"jsxSingleQuote": true
}
},
{
"files": "*.{jsx,tsx}",
"options": {
"jsxBracketSameLine": false,
"jsxSingleQuote": true
}
},
{
"files": "*.json",
"options": {
"printWidth": 80,
"tabWidth": 2,
"useTabs": false
}
}
]
}