{
"python.linting.pylintArgs": [
"–load-plugins=pylint_django"
],
"files.autoSave": "afterDelay",
"files.autoSaveDelay": 1000,
// ファイルの終了時に行末のスペース削除
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true,
"python.linting.lintOnSave": true,
//Tabをスペースキーとして変換
"[python]": {
"editor.insertSpaces": true,
"editor.detectIndentation": true,
"editor.tabSize": 4
},
"python.pythonPath": "python.exeの実行パス",
"python.venvPath": ".venv",
"python.pipenvPath": "/usr/local/bin/pipenv",
"python.linting.pylintEnabled": true,
"python.linting.pep8Enabled": false,
"python.linting.mypyEnabled": true,
"python.linting.flake8Enabled": true,
"python.linting.flake8Args": [
"--max-line-length=120",
"--max-complexity",
"20"
],
"python.formatting.provider": "autopep8",
"python.formatting.autopep8Args": [
"--aggressive",
"--aggressive",
],
"python.testing.unittestArgs": [
"-v",
"-s",
".