mirror of
https://github.com/TheAlgorithms/Python.git
synced 2024-11-24 05:21:09 +00:00
551c65766d
* makes LRUCache constructor concrete * fixes bug in dq_removal in other/least_recently_used + deque.remove() operates by value not index * [mypy] Annotates other/least_recently_used over generic type + clean-up: rename key_reference to match type. * [mypy] updates example to demonstrate LRUCache with complex type * Adds doctest to other/least_recently_used * mypy.ini: Remove exclude = (other/least_recently_used.py) * Various mypy configs * Delete mypy.ini * Add mypy to .pre-commit-config.yaml * mypy --ignore-missing-imports --install-types --non-interactive . * mypy v0.910 * Pillow=8.3.7 * Pillow==8.3.7 * Pillow==8.3.2 * Update .pre-commit-config.yaml * Update requirements.txt * Update pre-commit.yml * --install-types # See mirrors-mypy README.md Co-authored-by: Christian Clauss <cclauss@me.com>
74 lines
1.8 KiB
YAML
74 lines
1.8 KiB
YAML
repos:
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
rev: v3.4.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: 21.4b0
|
|
hooks:
|
|
- id: black
|
|
|
|
- repo: https://github.com/PyCQA/isort
|
|
rev: 5.8.0
|
|
hooks:
|
|
- id: isort
|
|
args:
|
|
- --profile=black
|
|
|
|
- repo: https://github.com/asottile/pyupgrade
|
|
rev: v2.29.0
|
|
hooks:
|
|
- id: pyupgrade
|
|
args:
|
|
- --py39-plus
|
|
|
|
- repo: https://gitlab.com/pycqa/flake8
|
|
rev: 3.9.1
|
|
hooks:
|
|
- id: flake8
|
|
args:
|
|
- --ignore=E203,W503
|
|
- --max-complexity=25
|
|
- --max-line-length=88
|
|
|
|
- repo: https://github.com/pre-commit/mirrors-mypy
|
|
rev: v0.910
|
|
hooks:
|
|
- id: mypy
|
|
args:
|
|
- --ignore-missing-imports
|
|
- --install-types # See mirrors-mypy README.md
|
|
- --non-interactive
|
|
|
|
- repo: https://github.com/codespell-project/codespell
|
|
rev: v2.0.0
|
|
hooks:
|
|
- id: codespell
|
|
args:
|
|
- --ignore-words-list=ans,crate,fo,followings,hist,iff,mater,secant,som,tim
|
|
- --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
|