29 lines
765 B
JSON
29 lines
765 B
JSON
|
{
|
||
|
"files.eol": "\n",
|
||
|
"files.trimTrailingWhitespace": true,
|
||
|
"files.insertFinalNewline": true,
|
||
|
"files.trimFinalNewlines": true,
|
||
|
"python.formatting.provider": "none",
|
||
|
"[python]": {
|
||
|
"editor.defaultFormatter": "ms-python.black-formatter",
|
||
|
"editor.formatOnSave": true,
|
||
|
"editor.tabSize": 4,
|
||
|
"editor.codeActionsOnSave": {
|
||
|
"source.organizeImports": true
|
||
|
}
|
||
|
},
|
||
|
"isort.args": ["--profile", "black"],
|
||
|
"[javascript]": {
|
||
|
"editor.formatOnSave": true,
|
||
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
||
|
},
|
||
|
"[markdown]": {
|
||
|
"editor.formatOnSave": true,
|
||
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
||
|
},
|
||
|
"[yaml]": {
|
||
|
"editor.formatOnSave": true,
|
||
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
||
|
}
|
||
|
}
|