Files
ai6-m2/Battleships/battleships-137-main/.vscode/settings.json
2025-11-07 11:22:04 +03:00

17 lines
603 B
JSON

{
"python.pythonPath": ".venv/bin/python",
"python.formatting.provider": "black",
"python.formatting.blackArgs": ["--line-length=79" ],
"python.formatting.autopep8Args": ["--max-line-length=79" ],
"python.linting.enabled": true,
"python.linting.flake8Enabled": true,
"python.linting.pylintEnabled": true,
"python.linting.lintOnSave": true,
"python.linting.flake8Args": [
"--max-line-length=79"
],
"python.linting.pylintArgs": [
"--disable=C0111" // Disable missing docstring warnings if needed
],
"files.autoSave": "onFocusChange"
}