@@ -106,64 +106,6 @@ repos:
106106 - --fix
107107 - id : ruff-format
108108
109- # - repo: https://github.com/asottile/add-trailing-comma
110- # rev: v3.1.0
111- # hooks:
112- # - id: add-trailing-comma
113-
114- # - repo: https://github.com/pre-commit/mirrors-autopep8
115- # rev: v2.0.4
116- # hooks:
117- # - id: autopep8
118- # args:
119- # - -i
120- # - --max-line-length=100
121-
122- # # Usage: http://pylint.pycqa.org/en/latest/user_guide/message-control.html
123- # - repo: https://github.com/PyCQA/pylint
124- # rev: v3.3.3
125- # hooks:
126- # - id: pylint
127- # args:
128- # - --disable=import-error # E0401. Locally you could not have all imports.
129- # - --disable=fixme # W0511. 'TODO' notations.
130- # - --disable=logging-fstring-interpolation # Conflict with "use a single formatting" WPS323
131- # # ignore `if TYPE_CHECKING` case. Other do reorder-python-imports
132- # - --disable=ungrouped-imports
133- # # Similar lines in 2 files. Currently I don't think that it possible
134- # # to DRY hooks unique files boilerplate
135- # - --disable=R0801
136-
137- - repo : https://github.com/pre-commit/mirrors-mypy
138- rev : v1.14.1
139- hooks :
140- - id : mypy
141- additional_dependencies :
142- - types-PyYAML
143- args : [--ignore-missing-imports, --disallow-untyped-calls, --warn-redundant-casts]
144-
145- # - repo: https://github.com/wemake-services/wemake-python-styleguide
146- # rev: 1.0.0
147- # hooks:
148- # - id: wemake-python-styleguide
149- # args:
150- # - --allowed-module-metadata=__all__ # Default to ''
151- # - --max-local-variables=6 # Default to 5
152- # - --max-returns=6 # Default to 5
153- # - --max-imports=15 # Default to 12
154- # # https://wemake-python-stylegui.de/en/latest/pages/usage/violations/index.html
155- # - --extend-ignore= E501 <!-- line too long (> 79 characters). Use 100 -->
156- # WPS115 <!-- Found upper-case constant in a class. All occurrences are false
157- # positive --> WPS226 <!-- Found string literal over-use - append > 3 -->
158-
159-
160- # exclude: |
161- # (?x)
162- # # Ignore deprecated hook
163- # (^src/pre_commit_terraform/terraform_docs_replace.py$
164- # )
165-
166-
167109- repo : https://github.com/pre-commit/mirrors-mypy.git
168110 rev : v1.15.0
169111 hooks :
0 commit comments