my vscode settings - jinwooklim/my-exp GitHub Wiki
{
"workbench.colorTheme": "Monokai",
"workbench.iconTheme": "material-icon-theme",
"terminal.integrated.inheritEnv": false,
"python.analysis.typeCheckingMode": "basic",
"python.languageServer": "Pylance",
"python.formatting.provider": "black",
"python.formatting.blackArgs": [
"--line-length",
"120"
],
"python.linting.pycodestyleEnabled": true,
"python.linting.enabled": true,
"python.linting.lintOnSave": true,
"editor.formatOnSave": true,
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"todo-tree.general.tags": [
"BUG",
"HACK",
"FIXME",
"TODO",
"XXX",
"[ ]",
"[x]"
],
"todo-tree.regex.regex": "(//|#|<!--|;|/\\*|^|^\\s*(-|\\d+.))\\s*($TAGS)"
}