Visutl Studio Code で Python だけタブを4スペースにする

Visutl Studio Code のタブ動作をデフォルトのスペースからタブに変更しているが、Pythonは4スペースにしたい
  1. Ctrl + Shift + P → Preferences: Configure language specific settings
  2. Python(下の方)を選択するか入力
  3. 表示されるpython設定に "editor.insertSpaces": true と "editor.tabSize": 4 を追加
{     "workbench.welcome.enabled": false,     "files.autoSave": "off",     "editor.insertSpaces": false,     "typescript.check.npmIsInstalled": false,     "python.linting.enabledWithoutWorkspace": false,     "editor.renderWhitespace": "boundary",     "[python]": {         "editor.insertSpaces": true,         "editor.tabSize": 4     } }

コメント