Added battleship files

This commit is contained in:
2025-11-07 11:22:04 +03:00
parent a11b2df651
commit 6d98d7d446
38 changed files with 1826 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
{
"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"
}