Browse Source

New theme with color Clear Digits added

master
Dirk Alders 6 months ago
parent
commit
69da610a0b
3 changed files with 32 additions and 8 deletions
  1. 17
    0
      .vscode/launch.json
  2. 14
    7
      .vscode/settings.json
  3. 1
    1
      themes

+ 17
- 0
.vscode/launch.json View File

@@ -0,0 +1,17 @@
1
+{
2
+    // Verwendet IntelliSense zum Ermitteln möglicher Attribute.
3
+    // Zeigen Sie auf vorhandene Attribute, um die zugehörigen Beschreibungen anzuzeigen.
4
+    // Weitere Informationen finden Sie unter https://go.microsoft.com/fwlink/?linkid=830387
5
+    "version": "0.2.0",
6
+    "configurations": [
7
+        {
8
+            "name": "Python: Main File execution",
9
+            "type": "python",
10
+            "request": "launch",
11
+            "program": "${workspaceFolder}/manage.py",
12
+            "args": ["runserver"],
13
+            "console": "integratedTerminal",
14
+            "justMyCode": true
15
+        }
16
+    ]
17
+}

+ 14
- 7
.vscode/settings.json View File

@@ -1,8 +1,15 @@
1 1
 {
2
-    "python.analysis.typeCheckingMode": "basic",
3
-    "editor.formatOnSave": true,
4
-    "editor.fontSize": 14,
5
-    "emmet.includeLanguages": {
6
-        "django-html": "html"
7
-    }
8
-}
2
+  "python.defaultInterpreterPath": "./venv/bin/python",
3
+  "autopep8.args": ["--max-line-length=150"],
4
+  "python.formatting.provider": "none",
5
+  "[python]": {
6
+    "editor.defaultFormatter": "ms-python.python",
7
+    "editor.formatOnSave": true
8
+  },
9
+  "editor.formatOnSave": true,
10
+  "editor.fontSize": 14,
11
+  "emmet.includeLanguages": { "django-html": "html" },
12
+  "python.testing.pytestArgs": ["-v", "--cov", "--cov-report=xml", "__test__"],
13
+  "python.testing.unittestEnabled": false,
14
+  "python.testing.pytestEnabled": true
15
+}

+ 1
- 1
themes

@@ -1 +1 @@
1
-Subproject commit e4a7af36eac358438ab67405bf35d79b75025744
1
+Subproject commit 13a8d8ebc4c82d2000af4464b863cf3b38a7a1fe

Loading…
Cancel
Save