ページ更新: 2000-01-01 (土) (8434日前)
関連:
Visual Studio Codeについてのリンクとメモ
目次
[編集]メモ #
[編集]autopep8の1行の行数を設定(Python, PEP8, max-line-length) #
.vscode/setting.json (ワークスペース設定)
{
"python.formatting.autopep8Args": [
// 1行80文字までとか無理です
"--max-line-length", "128",
]
}