Spaces:
Sleeping
Sleeping
File size: 1,160 Bytes
91eaff6 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 |
# See https://pre-commit.com for more information
# See https://pre-commit.com/hooks.html for more hooks
default_stages: [commit, push]
default_language_version:
python: python3
exclude: "deprecated"
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
hooks:
- id: trailing-whitespace
exclude: ^docs/
- id: check-builtin-literals
- id: check-executables-have-shebangs
- id: check-merge-conflict
- id: check-json
- id: check-yaml
- id: debug-statements
- id: detect-private-key
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.4.1
hooks:
- id: mypy # type annotations
exclude: ^tests/,^venv/
- repo: https://github.com/PyCQA/pylint
rev: v2.17.4
hooks:
- id: pylint
exclude: error.py
- repo: https://github.com/codespell-project/codespell
rev: v2.2.4
hooks:
- id: codespell # spell-check source code
args: ["-L", "basf,textgraph,udo"] # comma separated stop words
exclude: ^README.md|^NOTES.md|^examples|^docs/ack.md|^docs/biblio.md
language: python
types: [text]
|