Vitalii Kotivskyi commited on
Commit
22e23e3
·
1 Parent(s): cacb00d
Files changed (3) hide show
  1. .gitignore +0 -3
  2. .vscode/launch.json +16 -0
  3. .vscode/settings.json +4 -0
.gitignore CHANGED
@@ -136,6 +136,3 @@ dmypy.json
136
 
137
  # Cython debug symbols
138
  cython_debug/
139
-
140
- # VS Code
141
- .vscode/
 
136
 
137
  # Cython debug symbols
138
  cython_debug/
 
 
 
.vscode/launch.json ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ // Use IntelliSense to learn about possible attributes.
3
+ // Hover to view descriptions of existing attributes.
4
+ // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5
+ "version": "0.2.0",
6
+ "configurations": [
7
+
8
+ {
9
+ "name": "Python Debugger: Current File",
10
+ "type": "debugpy",
11
+ "request": "launch",
12
+ "program": "app.py",
13
+ "console": "integratedTerminal"
14
+ }
15
+ ]
16
+ }
.vscode/settings.json ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ {
2
+ "terminal.integrated.defaultProfile.osx": "zsh",
3
+ "terminal.integrated.inheritEnv": true
4
+ }