-
Notifications
You must be signed in to change notification settings - Fork 12
/
settings.json
75 lines (75 loc) · 2.68 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
//Unless you're the sharing kind
"telemetry.enableCrashReporter": false,
"telemetry.enableTelemetry": false,
"editor.renderWhitespace": "all",
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"editor.scrollBeyondLastLine": false,
"editor.stablePeek": true,
"editor.tabCompletion": "on",
"editor.suggest.localityBonus": true,
"files.autoGuessEncoding": true,
"files.trimFinalNewlines": true,
"files.trimTrailingWhitespace": true,
"search.runInExtensionHost": true,
"search.showLineNumbers": true,
"search.smartCase": true,
"search.useGlobalIgnoreFiles": true,
"git.alwaysShowStagedChangesResourceGroup": true,
"python.analysis.cachingLevel": "System",
"python.analysis.memory.keepLibraryLocalVariables": true,
"python.analysis.memory.keepLibraryAst": false,
"python.autoComplete.addBrackets": true,
"python.diagnostics.sourceMapsEnabled": true,
"editor.formatOnSave": true,
"python.testing.autoTestDiscoverOnSaveEnabled": false,
"python.workspaceSymbols.rebuildOnFileSave": false,
"editor.defaultFormatter": "ms-python.vscode-pylance",
"python.linting.pylintPath": "pylint ",
"errorLens.addAnnotationTextPrefixes": true,
"errorLens.fontStyleItalic": true,
"errorLens.gutterIconsEnabled": true,
"errorLens.onSave": true,
"errorLens.statusBarColorsEnabled": true,
"errorLens.statusBarMessageEnabled": true,
"git.suggestSmartCommit": false,
"files.exclude": {
"**/__pycache__": true,
"**/.mypy_cache": true,
"**/.pytest_cache": true,
"**/.vscode": true,
"**/node_modules": true,
"env*": true,
"node_modules": true,
"venv": true
},
"search.exclude": {
"**/.mypy_cache": true,
"**/env": true,
"**/venv": true
},
"files.watcherExclude": {
"**/.mypy_cache/**": true,
"**/env/**": true,
"**/venv/**": true,
"env-*": true
},
"editor.formatOnPaste": true,
"editor.formatOnType": true,
"workbench.editor.highlightModifiedTabs": true,
//Personal preference feel free to change if you are fancy and use zsh fish etc
"terminal.integrated.shell.linux": "/bin/bash",
"python.languageServer": "Pylance",
"python.analysis.diagnosticMode": "workspace",
"python.analysis.typeCheckingMode": "basic",
"python.analysis.extraPaths": [
"apiv5"
],
"[python]": {
"editor.defaultFormatter": "ms-python.python"
},
"python.analysis.completeFunctionParens": true,
"python.formatting.provider": "black",
"python.linting.mypyEnabled": true
}