refactor: VSCodeの推奨設定を追加

This commit is contained in:
shimoda.m@nds-tyo.co.jp 2022-08-18 11:14:42 +09:00
parent 2d2ad65d16
commit 5f302f5dc2

View File

@ -12,5 +12,8 @@
"python.linting.flake8Enabled": true,
"python.linting.flake8Args": ["--max-line-length=150", "--ignore=F541"],
"python.formatting.provider": "autopep8",
"python.formatting.autopep8Args": ["--max-line-length", "150"]
"python.formatting.autopep8Args": ["--max-line-length", "150"],
"python.testing.pytestArgs": ["tests"],
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true
}