-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.json
50 lines (47 loc) · 1.52 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
47
48
49
50
{
"editor.codeActionsOnSave": {
"source.fixAll": true,
"source.organizeImports": true,
"source.fixAll.eslint": true
},
"workbench.activityBar.visible": true,
"explorer.confirmDelete": false,
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"gitlens.gitCommands.closeOnFocusOut": true,
"git.suggestSmartCommit": false,
"update.mode": "manual",
//python stuff
"python.languageServer": "Pylance",
"python.formatting.provider": "autopep8",
"python.linting.enabled": true,
"python.linting.flake8CategorySeverity.E": "Information",
"python.linting.flake8Enabled": true,
"python.linting.pylintUseMinimalCheckers": false,
"python.linting.pylintEnabled": true,
"python.analysis.autoImportCompletions": true,
"python.workspaceSymbols.exclusionPatterns": [
"**/__pycache__/**",
"**/documents/**",
"**/node_modules/**",
"**/site-packages/**"
],
"python.linting.lintOnSave": true,
"python.autoComplete.extraPaths": ["./", "./src/", "./app/src"],
"[python]": {
"editor.codeActionsOnSave": {
"source.organizeImports": true,
"source.fixAll": true
},
"editor.formatOnPaste": true,
"editor.formatOnSave": true,
"editor.rulers": [80]
},
"jupyter.askForKernelRestart": false,
"jupyter.sendSelectionToInteractiveWindow": false,
"jupyter.alwaysTrustNotebooks": true,
"python.analysis.extraPaths": ["./app/src/", "./", "**/src/**"],
"notebook.cellToolbarLocation": {
"default": "right",
"jupyter-notebook": "left"
}
}