Add a Microsoft Code workspace file.
David Blume

David Blume commited on 2020-12-27 11:15:03
Showing 2 changed files, with 19 additions and 1 deletions.

... ...
@@ -18,7 +18,11 @@ You can clone from the origin with:
18 18
 
19 19
 ### Supported IDES
20 20
 
21
-This project has example PyCharm, Atom, and Sublime Text 3 projects.
21
+This project has example Microsoft Code, PyCharm, Atom, and Sublime Text 3 projects.
22
+
23
+#### Microsoft Code
24
+
25
+Code uses the .code-workspace project file.
22 26
 
23 27
 #### PyCharm
24 28
 
... ...
@@ -0,0 +1,14 @@
1
+{
2
+    "folders": [
3
+        {
4
+            "path": "."
5
+        }
6
+    ],
7
+    "settings": {
8
+        "files.exclude": {
9
+            "**/.idea": true,  // PyCharm
10
+            "**/__pycache__": true
11
+	}
12
+    }
13
+
14
+}
0 15