Open6
VSCode Tips
![BlueSilverCat](https://res.cloudinary.com/zenn/image/fetch/s--BP0NrWAI--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_70/https://storage.googleapis.com/zenn-user-upload/avatar/39d1034640.jpeg)
インデント幅が反映されない時
-
editor.formatOnSave
-> off - インデントを削除
- file close
- file open
format document
-
editor.formatOnSave
-> on
"editor.formatOnType": false,
"editor.detectIndentation": false,
![BlueSilverCat](https://res.cloudinary.com/zenn/image/fetch/s--BP0NrWAI--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_70/https://storage.googleapis.com/zenn-user-upload/avatar/39d1034640.jpeg)
Code Spell Checker
/* cSpell:disable */
/* cspell: disable-line */
/* cspell: disable-next-line */
/* cSpell:enable */
// cSpell:ignore zaallano, wooorrdd
// cSpell:words woorxs sweeetbeat
![BlueSilverCat](https://res.cloudinary.com/zenn/image/fetch/s--BP0NrWAI--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_70/https://storage.googleapis.com/zenn-user-upload/avatar/39d1034640.jpeg)
Developer Toolsの文字化け
Windows TerminalをUTF-8にすることで解決した
設定->時刻と言語->言語と地域->管理用の言語設定->システムロケールの変更->ベータ: ワールドワイド言語サポートで Unicode UTF-8を使用にチェックを入れる
![BlueSilverCat](https://res.cloudinary.com/zenn/image/fetch/s--BP0NrWAI--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_70/https://storage.googleapis.com/zenn-user-upload/avatar/39d1034640.jpeg)
install path
C:\Users\{UserName}\AppData\Local\Programs\Microsoft VS Code
extensions
%USERPROFILE%\.vscode\extensions
![BlueSilverCat](https://res.cloudinary.com/zenn/image/fetch/s--BP0NrWAI--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_70/https://storage.googleapis.com/zenn-user-upload/avatar/39d1034640.jpeg)
settings.json
"editor.wordWrapColumn": 120,
"editor.rulers": [120, 240]
![BlueSilverCat](https://res.cloudinary.com/zenn/image/fetch/s--BP0NrWAI--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_70/https://storage.googleapis.com/zenn-user-upload/avatar/39d1034640.jpeg)
VS code Pylint エラーメッセージを一時的に無効化する
... # pylint: disable=unpacking-non-sequence