setup project level linting with flake8

project level formatting with prettier
project level formatting with yapf
This commit is contained in:
smilerz
2024-04-05 08:36:32 -05:00
parent f14acc371d
commit 38b22f3a56
6 changed files with 111 additions and 29 deletions

View File

@@ -3,5 +3,10 @@
"cookbook/tests"
],
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true
}
"python.testing.pytestEnabled": true,
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"[python]": {
"editor.defaultFormatter": "eeyore.yapf",
}
}