Skip to content

Commit

Permalink
feat: black と flake8 適応
Browse files Browse the repository at this point in the history
  • Loading branch information
syokoysn committed Jul 18, 2022
1 parent a87f34f commit 0a238c7
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,18 @@
"terminal.integrated.profiles.linux": {
"zsh (login)": {
"path": "zsh",
"args": ["-l"]
"args": [
"-l"
]
}
},
"python.pythonPath": "/usr/local/bin/python"
"python.pythonPath": "/usr/local/bin/python",
"python.linting.enabled": true,
"python.linting.pylintEnabled": false,
"python.linting.flake8Enabled": true,
"python.linting.lintOnSave": true,
"python.formatting.provider": "black",
"editor.formatOnSave": true
},
"extensions": [
"ms-python.python",
Expand Down

0 comments on commit 0a238c7

Please sign in to comment.