-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.json
29 lines (29 loc) · 964 Bytes
/
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
{
"basedpyright.analysis.ignore": [
"${workspaceFolder}/.venv"
],
"python.defaultInterpreterPath": "${workspaceFolder}/.venv/bin/python",
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true,
"[python]": {
"editor.defaultFormatter": "charliermarsh.ruff",
"editor.codeActionsOnSave": {
"source.fixAll": "explicit",
"source.organizeImports": "explicit"
}
},
"notebook.codeActionsOnSave": {
"notebook.source.fixAll": "explicit",
"notebook.source.organizeImports": "explicit"
},
"editor.formatOnSave": true,
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"files.trimTrailingWhitespace": true,
"bazel.buildifierFixOnFormat": true,
"bazel.buildifierExecutable": "@buildifier_prebuilt//:buildifier",
"python.testing.pytestArgs": [
"earl"
],
"git.ignoreLimitWarning": true
}