mirror of
https://github.com/pacnpal/django-anymail.git
synced 2025-12-20 03:41:05 -05:00
- Add black and isort for Python styling - Add doc8 for reStructuredText styling - Add prettier for css/html/js/md/yaml styling - Run all styling tools from pre-commit hooks - Adjust flake8 config for compatibility with black (and current Django style) - Add some other helpful pre-commit hooks - Update editorconfig to match Django (with a few necessary adjustments for Anymail) - Update `tox -e lint` to run all pre-commit hooks - Update contributing docs
53 lines
1.5 KiB
YAML
53 lines
1.5 KiB
YAML
repos:
|
|
- repo: https://github.com/psf/black
|
|
rev: 23.1.0
|
|
hooks:
|
|
- id: black
|
|
- repo: https://github.com/pycqa/isort
|
|
rev: 5.12.0
|
|
hooks:
|
|
- id: isort
|
|
- repo: https://github.com/pycqa/flake8
|
|
rev: 6.0.0
|
|
hooks:
|
|
- id: flake8
|
|
- repo: https://github.com/pycqa/doc8
|
|
rev: v1.1.1
|
|
hooks:
|
|
- id: doc8
|
|
- repo: https://github.com/pre-commit/mirrors-prettier
|
|
# rev: see
|
|
# https://github.com/pre-commit/mirrors-prettier/issues/29#issuecomment-1332667344
|
|
rev: v2.7.1
|
|
hooks:
|
|
- id: prettier
|
|
files: '\.(css|html|jsx?|md|tsx?|ya?ml)$'
|
|
additional_dependencies:
|
|
- prettier@2.8.3
|
|
- repo: https://github.com/pre-commit/pygrep-hooks
|
|
rev: v1.10.0
|
|
hooks:
|
|
- id: python-check-blanket-noqa
|
|
- id: python-check-blanket-type-ignore
|
|
- id: python-no-eval
|
|
- id: python-no-log-warn
|
|
- id: python-use-type-annotations
|
|
# - id: rst-backticks
|
|
# (no: some docs source uses single backticks expecting Sphinx default_role)
|
|
- id: rst-directive-colons
|
|
- id: rst-inline-touching-normal
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
rev: v4.4.0
|
|
hooks:
|
|
- id: check-json
|
|
- id: check-toml
|
|
- id: check-yaml
|
|
- id: end-of-file-fixer
|
|
- id: fix-byte-order-marker
|
|
- id: fix-encoding-pragma
|
|
args: [--remove]
|
|
- id: forbid-submodules
|
|
- id: mixed-line-ending
|
|
- id: requirements-txt-fixer
|
|
- id: trailing-whitespace
|