comictagger/.pre-commit-config.yaml

47 lines
1.3 KiB
YAML
Raw Normal View History

2022-06-06 13:18:45 -07:00
exclude: ^scripts
2022-06-02 18:32:16 -07:00
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.5.0
2022-06-02 18:32:16 -07:00
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-yaml
- id: debug-statements
- id: name-tests-test
- id: requirements-txt-fixer
- repo: https://github.com/asottile/setup-cfg-fmt
rev: v2.5.0
2022-06-02 18:32:16 -07:00
hooks:
- id: setup-cfg-fmt
- repo: https://github.com/asottile/pyupgrade
rev: v3.15.0
2022-06-02 18:32:16 -07:00
hooks:
- id: pyupgrade
args: [--py39-plus]
- repo: https://github.com/PyCQA/autoflake
rev: v2.2.1
hooks:
- id: autoflake
args: [-i, --remove-all-unused-imports, --ignore-init-module-imports]
2023-04-22 17:54:58 -07:00
- repo: https://github.com/PyCQA/isort
rev: 5.13.2
2023-04-22 17:54:58 -07:00
hooks:
- id: isort
args: [--af,--add-import, 'from __future__ import annotations']
2022-06-02 18:32:16 -07:00
- repo: https://github.com/psf/black
rev: 23.12.0
2022-06-02 18:32:16 -07:00
hooks:
- id: black
- repo: https://github.com/PyCQA/flake8
2023-09-04 17:56:18 -07:00
rev: 6.1.0
2022-06-02 18:32:16 -07:00
hooks:
- id: flake8
2023-11-05 13:27:31 -08:00
additional_dependencies: [flake8-encodings, flake8-builtins, flake8-length, flake8-print]
2022-06-02 18:32:16 -07:00
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.7.1
2022-06-02 18:32:16 -07:00
hooks:
- id: mypy
2023-12-17 16:15:26 -08:00
additional_dependencies: [types-setuptools, types-requests, settngs>=0.9.1]
2022-06-06 13:18:45 -07:00
ci:
skip: [mypy]