-
Notifications
You must be signed in to change notification settings - Fork 3
/
settings.json
46 lines (46 loc) · 1.24 KB
/
settings.json
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
45
46
{
"editor.formatOnSave": true,
"diffEditor.codeLens": true,
"eslint.enable": true,
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit",
"source.sortImports": "explicit",
"source.fixAll.markdownlint": "explicit",
"source.fixAll": "explicit"
},
"isort.args": [
"--profile",
"black"
],
"typescript.format.enable": true,
"prettier.requireConfig": true,
"[python]": {
"editor.defaultFormatter": "ms-python.black-formatter",
"editor.tabSize": 4,
"editor.rulers": [
119
]
},
"black-formatter.args": ["--line-length", "119"],
"flake8.args": [
"--max-line-length", "119"
],
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"files.eol": "\n",
"files.insertFinalNewline": true,
"files.trimTrailingWhitespace": true
}