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