Skip to content

Commit

Permalink
Add VS Code project settings (primarily to make black the default for…
Browse files Browse the repository at this point in the history
…matter & enable format on save)
  • Loading branch information
cyberw committed Aug 27, 2020
1 parent 5f1a3bb commit ef55949
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
"editor.formatOnSave": true,
"python.formatting.provider": "black",
"files.exclude": {
".pytest_cache/**/*": true,
"**/*.pyc": true,
"**/locust.wpr": true,
"locust.egg-info/**": true,
"locustio.egg-info/**": true,
"docs/_build/**": true,
"docs/cli-help-output.txt": true,
"docs/config-options.rst": true,
"**/mock.*.egg": true,
"dist/**": true,
".idea/**": true,
"**/*.iml": true,
"**/*.ipr": true,
"**/.vagrant": true,
"**/build/": true,
"**/.coverage": true,
"**/.tox/": true,
"docs/env-options.rst": true,
"**/.editorconfig": true,
"**/__pycache__": true
},
"restructuredtext.confPath": "${workspaceFolder}/docs",
}

0 comments on commit ef55949

Please sign in to comment.