1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| {
| "printWidth": 90,
| "useTabs": false,
| "tabWidth": 4,
| "trailingComma": "all",
| "bracketSpacing": true,
| "singleQuote": true,
| "arrowParens": "avoid",
| "semi": true,
| "overrides": [
| {
| "files": "*.js",
| "options": {
| "printWidth": 100
| }
| }
| ]
| }
|
|