This repository has been archived on 2023-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
python-blog/.pre-commit-config.yaml

81 lines
2.1 KiB
YAML
Raw Normal View History

exclude: (\.min\.(js|css)(\.map)?$|/vendor/)
2020-08-14 14:53:30 +02:00
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
2021-12-28 22:31:53 +01:00
rev: v4.1.0
2020-08-14 14:53:30 +02:00
hooks:
- id: check-ast
- id: check-json
2020-08-14 14:53:30 +02:00
- id: check-toml
- id: check-xml
2020-11-24 22:11:13 +01:00
- id: check-yaml
2021-02-06 18:07:51 +01:00
args: [--allow-multiple-documents]
2020-08-14 14:53:30 +02:00
- id: end-of-file-fixer
- id: check-merge-conflict
- id: debug-statements
- id: detect-private-key
2020-08-14 14:53:30 +02:00
- id: pretty-format-json
args:
- --autofix
- --no-sort-keys
- id: trailing-whitespace
args:
- --markdown-linebreak-ext=md
- repo: https://github.com/timothycrosley/isort
rev: 5.10.1
2020-08-14 14:53:30 +02:00
hooks:
- id: isort
- repo: https://github.com/psf/black
2022-02-24 20:38:43 +01:00
rev: 22.1.0
2020-08-14 14:53:30 +02:00
hooks:
- id: black
- repo: https://github.com/asottile/pyupgrade
2022-02-24 20:38:43 +01:00
rev: v2.31.0
hooks:
- id: pyupgrade
args:
- --py310-plus
- repo: https://github.com/adamchainz/django-upgrade
rev: 1.4.0
hooks:
- id: django-upgrade
args: [--target-version, "4.0"]
- repo: https://github.com/rtts/djhtml
2022-02-24 20:38:43 +01:00
rev: v1.5.0
hooks:
- id: djhtml
2022-02-24 20:38:43 +01:00
- repo: https://github.com/flakeheaven/flakeheaven
rev: 0.11.0
hooks:
2022-02-24 20:38:43 +01:00
- id: flakeheaven
additional_dependencies:
2021-12-29 10:40:48 +01:00
- flake8-annotations-complexity
- flake8-builtins
2021-12-29 10:40:48 +01:00
- flake8-bugbear
- flake8-comprehensions
- flake8-eradicate
2021-12-29 10:40:48 +01:00
- flake8-noqa
- flake8-pytest-style
2021-12-29 10:40:48 +01:00
- flake8-pyi
- wemake-python-styleguide
- repo: https://github.com/pre-commit/mirrors-prettier
rev: v2.5.1
hooks:
- id: prettier
types_or: [javascript, css]
- repo: https://github.com/pre-commit/mirrors-eslint
2022-02-24 20:38:43 +01:00
rev: v8.9.0
hooks:
- id: eslint
args: [--fix]
types_or: [javascript, css]
additional_dependencies:
- eslint@^7.29.0
- eslint-config-prettier@^8.3.0
2021-12-29 16:19:31 +01:00
- repo: local
hooks:
- id: mypy
name: mypy
entry: mypy
language: system
2021-12-29 16:25:56 +01:00
types_or: [python, pyi]