Skip to content

Commit

Permalink
Merge pull request #3 from syokoysn/feature/add-setting-for-linter
Browse files Browse the repository at this point in the history
black と flake8 の設定を追加
  • Loading branch information
syokoysn committed Jul 18, 2022
2 parents a87f34f + 0a238c7 commit d942a8c
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 d942a8c

Please sign in to comment.