mirror of
https://github.com/TheAlgorithms/Python.git
synced 2024-11-23 21:11:08 +00:00
a652905b60
* ci(pre-commit): Add ``flake8-comprehensions`` to ``pre-commit`` (#7233) * refactor: Fix ``flake8-comprehensions`` errors * fix: Replace `map` with generator (#7233) * fix: Cast `range` objects to `list`
76 lines
1.9 KiB
YAML
76 lines
1.9 KiB
YAML
repos:
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
rev: v4.3.0
|
|
hooks:
|
|
- id: check-executables-have-shebangs
|
|
- id: check-yaml
|
|
- id: end-of-file-fixer
|
|
types: [python]
|
|
- id: trailing-whitespace
|
|
exclude: |
|
|
(?x)^(
|
|
data_structures/heap/binomial_heap.py
|
|
)$
|
|
- id: requirements-txt-fixer
|
|
|
|
- repo: https://github.com/psf/black
|
|
rev: 22.10.0
|
|
hooks:
|
|
- id: black
|
|
|
|
- repo: https://github.com/PyCQA/isort
|
|
rev: 5.10.1
|
|
hooks:
|
|
- id: isort
|
|
args:
|
|
- --profile=black
|
|
|
|
- repo: https://github.com/asottile/pyupgrade
|
|
rev: v3.0.0
|
|
hooks:
|
|
- id: pyupgrade
|
|
args:
|
|
- --py310-plus
|
|
|
|
- repo: https://github.com/PyCQA/flake8
|
|
rev: 5.0.4
|
|
hooks:
|
|
- id: flake8 # See .flake8 for args
|
|
additional_dependencies:
|
|
- flake8-bugbear
|
|
- flake8-builtins
|
|
- flake8-comprehensions
|
|
- pep8-naming
|
|
|
|
- repo: https://github.com/pre-commit/mirrors-mypy
|
|
rev: v0.982
|
|
hooks:
|
|
- id: mypy
|
|
args:
|
|
- --ignore-missing-imports
|
|
- --install-types # See mirrors-mypy README.md
|
|
- --non-interactive
|
|
additional_dependencies: [types-requests]
|
|
|
|
- repo: https://github.com/codespell-project/codespell
|
|
rev: v2.2.1
|
|
hooks:
|
|
- id: codespell
|
|
args:
|
|
- --ignore-words-list=ans,crate,damon,fo,followings,hist,iff,mater,secant,som,sur,tim,zar
|
|
- --skip="./.*,./strings/dictionary.txt,./strings/words.txt,./project_euler/problem_022/p022_names.txt"
|
|
exclude: |
|
|
(?x)^(
|
|
strings/dictionary.txt |
|
|
strings/words.txt |
|
|
project_euler/problem_022/p022_names.txt
|
|
)$
|
|
|
|
- repo: local
|
|
hooks:
|
|
- id: validate-filenames
|
|
name: Validate filenames
|
|
entry: ./scripts/validate_filenames.py
|
|
language: script
|
|
pass_filenames: false
|