Skip to content

Commit b14e0c8

Browse files
[pre-commit.ci] pre-commit autoupdate (#503)
* [pre-commit.ci] pre-commit autoupdate updates: - [github.com/astral-sh/ruff-pre-commit: v0.6.5 → v0.6.7](astral-sh/ruff-pre-commit@v0.6.5...v0.6.7) - [github.com/PyCQA/pylint: v3.2.7 → v3.3.0](pylint-dev/pylint@v3.2.7...v3.3.0) * Ignore too-many-positional-arguments --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Kiran Jonnalagadda <[email protected]>
1 parent 4352dc7 commit b14e0c8

File tree

2 files changed

+16
-15
lines changed

2 files changed

+16
-15
lines changed

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ repos:
88
hooks:
99
- id: check-pre-commit-ci-config
1010
- repo: https://github.com/astral-sh/ruff-pre-commit
11-
rev: v0.6.5
11+
rev: v0.6.7
1212
hooks:
1313
- id: ruff
1414
args: ['--fix', '--exit-non-zero-on-fix']
@@ -71,7 +71,7 @@ repos:
7171
- id: flake8
7272
additional_dependencies: *flake8deps
7373
- repo: https://github.com/PyCQA/pylint
74-
rev: v3.2.7
74+
rev: v3.3.0
7575
hooks:
7676
- id: pylint
7777
args: [

pyproject.toml

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -144,26 +144,27 @@ for path in pathlib.Path.cwd().parents:
144144
[tool.pylint.message_control]
145145
max-line-length = 88
146146
disable = [
147-
'cyclic-import', # We have tail imports all over
148-
'fixme', # Our workflow is to tag for future fixes
149-
'invalid-name', # Flake8 covers our naming convention requirements
150-
'line-too-long', # Let Black/Ruff handle this
151-
'missing-class-docstring', # Backlog
152-
'missing-function-docstring', # Backlog
153-
'no-member', # Pylint doesn't understand mixins referring to main class members
154-
'redefined-builtin', # Covered by Flake8 already
155-
'too-few-public-methods', # Data classes and validator classes have few methods
147+
'cyclic-import', # We have tail imports all over
148+
'fixme', # Our workflow is to tag for future fixes
149+
'invalid-name', # Flake8 covers our naming convention requirements
150+
'line-too-long', # Let Black/Ruff handle this
151+
'missing-class-docstring', # Backlog
152+
'missing-function-docstring', # Backlog
153+
'no-member', # Pylint doesn't understand mixins referring to main class members
154+
'redefined-builtin', # Covered by Flake8 already
155+
'too-few-public-methods', # Data classes and validator classes have few methods
156156
'too-many-arguments',
157157
'too-many-branches',
158158
'too-many-locals',
159-
'too-many-instance-attributes', # Some instances are just bags of attributes
159+
'too-many-instance-attributes', # Some instances are just bags of attributes
160160
'too-many-lines',
161161
'too-many-nested-blocks',
162+
'too-many-positional-arguments',
162163
'too-many-return-statements',
163164
'too-many-statements',
164-
'unused-argument', # Arguments required for spec compatibility aren't always used
165-
'wrong-import-position', # Imports after code are sometimes required
166-
'wrong-import-order', # Let black and isort handle this
165+
'unused-argument', # Arguments required for spec compatibility aren't always used
166+
'wrong-import-position', # Imports after code are sometimes required
167+
'wrong-import-order', # Let black and isort handle this
167168
]
168169

169170
[tool.bandit]

0 commit comments

Comments
 (0)