We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 528c7e2 commit ef9eb19Copy full SHA for ef9eb19
2 files changed
.gitignore
@@ -3,7 +3,7 @@ __pycache__/
3
*.py[cod]
4
*$py.class
5
results/
6
-.vscode
+
7
# C extensions
8
*.so
9
# Distribution / packaging
@@ -160,7 +160,6 @@ cython_debug/
160
# MacOS
161
**/.DS_Store
162
163
164
165
_sandbox.py
166
.vscode/settings.json
@@ -0,0 +1,15 @@
1
+{
2
+ "[python]": {
+ "editor.formatOnSave": true,
+ "editor.defaultFormatter": "ms-python.black-formatter",
+ "editor.codeActionsOnSave": {
+ "source.organizeImports": "explicit",
+ "source.fixAll": "never"
+ }
+ },
10
+ "python.testing.pytestArgs": [
11
+ "tests"
12
+ ],
13
+ "python.testing.unittestEnabled": false,
14
+ "python.testing.pytestEnabled": true,
15
+}
0 commit comments