Perhaps it makes sense to implement pre-commit hooks. I would propose to use black or ruff for formatting and perhaps also implement a spellchecker. Running codespell on basil gives some funny responses. This would also solve #113.
For aidatlu the following pre-commit hook is used:
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
hooks:
- id: check-yaml
- id: end-of-file-fixer
- id: trailing-whitespace
- repo: https://github.com/psf/black
rev: 24.10.0
hooks:
- id: black
- repo: https://github.com/codespell-project/codespell
rev: v2.3.0
hooks:
- id: codespell
Perhaps it makes sense to implement pre-commit hooks. I would propose to use black or ruff for formatting and perhaps also implement a spellchecker. Running codespell on basil gives some funny responses. This would also solve #113.
For aidatlu the following pre-commit hook is used: