diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 99e1312da..7788fb1f7 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -29,7 +29,7 @@ repos: hooks: - id: flake8 - repo: https://github.com/PyCQA/pylint - rev: v3.2.4 + rev: v3.3.2 hooks: - id: pylint files: ^(?!(tests|docs)).*\.py$ diff --git a/AUTHORS.rst b/AUTHORS.rst index 74b80ac09..52ed5f66a 100644 --- a/AUTHORS.rst +++ b/AUTHORS.rst @@ -81,6 +81,7 @@ The following wonderful people contributed directly or indirectly to this projec - `LRezende `_ - `Luca Bellanti `_ - `Lucas Molinari `_ +- `Luis PĂ©rez `_ - `macrojames `_ - `Matheus Lemos `_ - `Michael Dix `_ diff --git a/pyproject.toml b/pyproject.toml index cb98f0057..0a63d90f4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -149,7 +149,8 @@ enable = ["useless-suppression"] disable = ["duplicate-code", "too-many-arguments", "too-many-public-methods", "too-few-public-methods", "broad-exception-caught", "too-many-instance-attributes", "fixme", "missing-function-docstring", "missing-class-docstring", "too-many-locals", - "too-many-lines", "too-many-branches", "too-many-statements", "cyclic-import" + "too-many-lines", "too-many-branches", "too-many-statements", "cyclic-import", + "too-many-positional-arguments", ] [tool.pylint.main]