We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 452de97 commit bb350edCopy full SHA for bb350ed
.vscode/settings.json
@@ -1,12 +1,14 @@
1
{
2
"python.analysis.exclude": [
3
+ "**/node_modules",
4
+ "**/__pycache__",
5
+ ".git",
6
+ "**/build",
7
+ "env/**",
8
"**/.*",
9
"**/.venv",
10
"**/venv",
- "**/env",
- "**/node_modules",
- "**/__pycache__",
- "env/**"
11
+ "**/env"
12
],
13
"files.trimTrailingWhitespace": true,
14
"files.insertFinalNewline": true,
@@ -33,5 +35,10 @@
33
35
"plantuml.exportOutDir": "assets/diagrams/out",
34
36
"python.terminal.activateEnvironment": true,
37
"python.terminal.activateEnvInCurrentTerminal": true,
- "python.testing.pytestEnabled": true
-}
38
+ "python.testing.pytestEnabled": true,
39
+ "python.linting.enabled": true,
40
+ "python.linting.pylintEnabled": true,
41
+ "jupyter.kernels.trusted": [
42
+ "./.venv/Scripts/python.exe"
43
+ ]
44
+}
0 commit comments