Skip to content

Commit

Permalink
Add standard vscode settings
Browse files Browse the repository at this point in the history
  • Loading branch information
mplanchard committed Sep 7, 2019
1 parent abd1a9d commit e2f37ea
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"editor.formatOnSave": true,

"python.formatting.provider": "black",
"python.formatting.blackArgs": ["--line-length", "80"],

"python.linting.flake8Enabled": true,
"python.linting.flake8Args": [],
"python.linting.pydocstyleEnabled": true,
"python.linting.pydocstyleArgs": [],
"python.linting.pylintEnabled": true,
"python.linting.pylintArgs": [],
"python.linting.mypyEnabled": true,
"python.linting.mypyArgs": [],

"python.pythonPath": "venv/bin/python"
}

0 comments on commit e2f37ea

Please sign in to comment.