We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cde8b32 commit a670d2cCopy full SHA for a670d2c
1 file changed
.vscode/settings.json
@@ -0,0 +1,20 @@
1
+{
2
+ "[python]": {
3
+ "editor.formatOnSave": true,
4
+ "editor.codeActionsOnSave": {
5
+ "source.fixAll": "explicit",
6
+ "source.organizeImports": "explicit"
7
+ },
8
+ "editor.defaultFormatter": "charliermarsh.ruff"
9
10
+ "python.testing.pytestArgs": [
11
+ "locustfile.py"
12
+ ],
13
+ "python.testing.unittestEnabled": false,
14
+ "python.testing.pytestEnabled": true,
15
+ "files.exclude": {
16
+ ".pytest_cache/**/*": true,
17
+ "**/__pycache__": true,
18
+ "**/.pytest_cache": true
19
20
+}
0 commit comments