Initial commit

This commit is contained in:
Jared Dillard
2025-05-16 00:40:07 -07:00
parent 9aea054794
commit 87209a0405
8 changed files with 487 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
# Install pre-commit hooks via
# pre-commit install
repos:
- repo: https://github.com/PyCQA/isort
rev: 5.13.2
hooks:
- id: isort
- repo: https://github.com/psf/black
rev: 24.10.0
hooks:
- id: black
- repo: https://github.com/PyCQA/flake8
rev: 7.1.1
hooks:
- id: flake8
- repo: https://github.com/sphinx-contrib/sphinx-lint
rev: v1.0.0
hooks:
- id: sphinx-lint
args: [--jobs=1]
files: ^docs/|CHANGELOG.rst|README.rst
types: [rst]