mirror of
https://github.com/andreinechaev/nvcc4jupyter.git
synced 2026-06-13 10:40:48 +05:30
34 lines
909 B
JSON
34 lines
909 B
JSON
{
|
|
"editor.formatOnSave": true,
|
|
"editor.formatOnPaste": true,
|
|
"files.trimTrailingWhitespace": true,
|
|
"files.autoSave": "onFocusChange",
|
|
"git.autofetch": true,
|
|
"[jsonc]": {
|
|
"editor.defaultFormatter": "vscode.json-language-features"
|
|
},
|
|
"[python]": {
|
|
"editor.defaultFormatter": "ms-python.black-formatter",
|
|
"editor.formatOnSave": true,
|
|
"editor.codeActionsOnSave": {
|
|
"source.organizeImports": "explicit"
|
|
},
|
|
},
|
|
"python.defaultInterpreterPath": "/usr/local/bin/python",
|
|
"python.testing.unittestEnabled": false,
|
|
"python.testing.pytestEnabled": true,
|
|
"pylint.args": [
|
|
"--rcfile=pyproject.toml"
|
|
],
|
|
"black-formatter.args": [
|
|
"--config=pyproject.toml"
|
|
],
|
|
"flake8.args": [
|
|
"--config",
|
|
".flake8"
|
|
],
|
|
"isort.args": [
|
|
"--settings-path=pyproject.toml"
|
|
]
|
|
}
|