Visual Studio Code - gosaaan1/hokulea-garage GitHub Wiki
言語別設定 (settings.json)
Python
{
// 基本設定
"editor.tabSize": 4,
"editor.insertSpaces": true,
"editor.detectIndentation": false,
"files.eol": "\\n",
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true,
// リンティングとフォーマット
"python.linting.enabled": true,
"python.linting.pylintEnabled": true,
"python.formatting.autopep8Path": "autopep8",
"python.formatting.blackPath": "black",
"python.formatting.provider": "black",
"editor.formatOnSave": true,
// 型チェック
"python.analysis.typeCheckingMode": "basic",
// テスト
"python.testing.pytestEnabled": true,
"python.testing.unittestEnabled": false,
"python.testing.nosetestsEnabled": false,
// その他の便利な設定
"workbench.colorTheme": "Visual Studio Dark",
"workbench.iconTheme": "vscode-icons",
"editor.minimap.enabled": true,
"editor.renderWhitespace": "all",
"editor.codeActionsOnSave": {
"source.organizeImports": true
}
}
便利な拡張機能