VS Code option#
{
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"python.languageServer": "Pylance",
"git.ignoreLegacyWarning": true,
"python.linting.enabled": true,
"python.linting.flake8Enabled": true,
"python.linting.flake8Args": [
"--ignore=E203", // 천천히 확인
// "--ignore=E266",
"--ignore=E501",
"--ignore=W503",
// "--max-line-length=80",
// "--select = B,C,E,F,W,T4,B9",
"--select = B,C,E,F,W,B950",
"--max-complexity = 18"
],
"editor.formatOnSave": true,
"python.formatting.provider": "yapf",
"workbench.colorTheme": "GitHub Dark",
"python.pythonPath": "<Python-ENV>/bin/python"
}