Files
SpecterOps-Nemesis/packages/python/nemesiscommon/.vscode/settings.json
T
2024-01-08 22:04:41 -05:00

53 lines
1.5 KiB
JSON

{
"python.linting.pylintEnabled": false,
"python.linting.flake8Enabled": true,
"python.linting.enabled": true,
"python.linting.flake8Args": [
"--max-line-length=240",
"--ignore=E203,E722,W503",
],
"python.analysis.diagnosticSeverityOverrides": {
"reportMissingImports": "none",
"reportMissingModuleSource": "none",
},
"editor.formatOnSave": true,
"files.trimTrailingWhitespace": true,
"python.formatting.provider": "none",
"python.formatting.blackArgs": [
"--line-length",
"240"
],
"python.testing.pytestArgs": [
"tests"
],
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true,
"[python]": {
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit"
},
"editor.defaultFormatter": "ms-python.black-formatter"
},
"files.exclude": {
"**/__pycache__/**": true,
"**/.pytest_cache/**": true,
"**/.venv/**": true,
"**/*.pyc": {
"when": "$(basename).py",
},
},
"files.watcherExclude": {
"**/__pycache__/**": true,
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/.hg/store/**": true,
"**/.ipynb_checkpoints/**": true,
"**/.mypy_cache/**": true,
"**/.pytest_cache/**": true,
"**/.venv/**": true,
"**/*.egg-info/**": true,
"**/build/**": true,
"**/dist/**": true,
"**/node_modules/*/**": true,
}
}