-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpython_learning.code-workspace
76 lines (75 loc) · 2.24 KB
/
python_learning.code-workspace
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
76
{
"folders": [
{
"path": "."
}
],
"settings": {
"editor.renderWhitespace": "all",
"[markdown]": {
"editor.codeActionsOnSave": {
"source.fixAll.markdownlint": true
},
"editor.wordWrap": "wordWrapColumn",
"editor.wrappingIndent": "none"
},
"[python]": {
"editor.wordWrapColumn": 100,
"editor.codeActionsOnSave": {
"source.fixAll": true,
"source.organizeImports": true
}
},
"editor.tabSize": 4,
"editor.insertSpaces": true,
"editor.wordWrap": "wordWrapColumn",
"editor.wordWrapColumn": 80,
"editor.detectIndentation": false,
"editor.fontSize": 16,
"terminal.integrated.defaultProfile.osx": "bash",
"terminal.integrated.profiles.osx": {
"bash": {
"path": "bash",
"args": ["-l"]
}
},
"terminal.integrated.defaultProfile.linux": "bash",
"terminal.integrated.profiles.linux": {
"bash": {
"path": "bash",
"args": ["-l"]
}
},
"terminal.integrated.env.linux": {
"VSCODE_INTEGRATED_TERMINAL": "true",
"PYTHONPATH": "${workspaceFolder}:${env:PYTHONPATH}"
},
"git.autorefresh": true,
"markdownlint.ignore": ["**/*.md.html"],
"files.insertFinalNewline": true,
"files.associations": {
"*.md.html": "markdown"
},
"shellcheck.enable": true,
"shellcheck.useWorkspaceRootAsCwd": true,
"shellcheck.run": "onSave",
"shellformat.flag": "-i 2 -ci -sr -bn",
"ruff.fixAll": true,
"ruff.organizeImports": true,
"ruff.importStrategy": "fromEnvironment",
"python.languageServer": "Pylance",
"python.defaultInterpreterPath": "${workspaceFolder}/.venv/bin/python",
"python.poetryPath": "/home/girish/.poetry/bin/poetry",
"python.formatting.provider": "black",
"autoDocstring.docstringFormat": "numpy",
"python.analysis.autoImportUserSymbols": true,
"python.analysis.autoImportCompletions": true,
"python.analysis.completeFunctionParens": true,
"python.analysis.autoSearchPaths": true,
"python.analysis.importFormat": "absolute",
"python.analysis.indexing": true,
"python.linting.mypyEnabled": true,
"python.testing.pytestEnabled": true,
"python.testing.pytestPath": "pytest"
}
}