copyparty/.vscode/settings.json
2022-12-29 04:44:15 +00:00

83 lines
2.7 KiB
JSON

{
"workbench.colorCustomizations": {
// https://ocv.me/dot/bifrost.html
"terminal.background": "#1e1e1e",
"terminal.foreground": "#d2d2d2",
"terminalCursor.background": "#93A1A1",
"terminalCursor.foreground": "#93A1A1",
"terminal.ansiBlack": "#404040",
"terminal.ansiRed": "#f03669",
"terminal.ansiGreen": "#b8e346",
"terminal.ansiYellow": "#ffa402",
"terminal.ansiBlue": "#02a2ff",
"terminal.ansiMagenta": "#f65be3",
"terminal.ansiCyan": "#3da698",
"terminal.ansiWhite": "#d2d2d2",
"terminal.ansiBrightBlack": "#606060",
"terminal.ansiBrightRed": "#c75b79",
"terminal.ansiBrightGreen": "#c8e37e",
"terminal.ansiBrightYellow": "#ffbe4a",
"terminal.ansiBrightBlue": "#71cbff",
"terminal.ansiBrightMagenta": "#b67fe3",
"terminal.ansiBrightCyan": "#9cf0ed",
"terminal.ansiBrightWhite": "#ffffff",
},
"python.testing.pytestEnabled": false,
"python.testing.unittestEnabled": true,
"python.testing.unittestArgs": [
"-v",
"-s",
"./tests",
"-p",
"test_*.py"
],
"python.linting.pylintEnabled": true,
"python.linting.flake8Enabled": true,
"python.linting.banditEnabled": true,
"python.linting.mypyEnabled": true,
"python.linting.mypyArgs": [
"--ignore-missing-imports",
"--follow-imports=silent",
"--show-column-numbers",
"--strict"
],
"python.linting.flake8Args": [
"--max-line-length=120",
"--ignore=E722,F405,E203,W503,W293,E402,E501,E128",
],
"python.linting.banditArgs": [
"--ignore=B104"
],
"python.linting.pylintArgs": [
"--disable=missing-module-docstring",
"--disable=missing-class-docstring",
"--disable=missing-function-docstring",
"--disable=import-outside-toplevel",
"--disable=wrong-import-position",
"--disable=raise-missing-from",
"--disable=bare-except",
"--disable=broad-except",
"--disable=invalid-name",
"--disable=line-too-long",
"--disable=consider-using-f-string"
],
// python3 -m isort --py=27 --profile=black copyparty/
"python.formatting.provider": "black",
"editor.formatOnSave": true,
"[html]": {
"editor.formatOnSave": false,
"editor.autoIndent": "keep",
},
"[css]": {
"editor.formatOnSave": false,
},
"files.associations": {
"*.makefile": "makefile"
},
"python.formatting.blackArgs": [
"-t",
"py27"
],
"python.linting.enabled": true,
"python.pythonPath": "/usr/bin/python3"
}