Skip to content

Commit 763828b

Browse files
[pre-commit.ci] pre-commit autoupdate (#156)
<!--pre-commit.ci start--> updates: - [github.com/tox-dev/pyproject-fmt: 1.3.0 → 1.4.1](tox-dev/pyproject-fmt@1.3.0...1.4.1) - [github.com/astral-sh/ruff-pre-commit: v0.1.3 → v0.1.4](astral-sh/ruff-pre-commit@v0.1.3...v0.1.4) <!--pre-commit.ci end--> --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
1 parent 2d0d11d commit 763828b

File tree

2 files changed

+24
-24
lines changed

2 files changed

+24
-24
lines changed

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,12 @@ repos:
3636
)
3737
3838
- repo: https://github.com/tox-dev/pyproject-fmt
39-
rev: 1.3.0
39+
rev: 1.4.1
4040
hooks:
4141
- id: pyproject-fmt
4242

4343
- repo: https://github.com/astral-sh/ruff-pre-commit
44-
rev: v0.1.3
44+
rev: v0.1.4
4545
hooks:
4646
- id: ruff
4747

pyproject.toml

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,28 @@ max-complexity = 16
131131
[tool.isort]
132132
profile = "black"
133133

134+
[tool.pylint]
135+
master.py-version = "3.9"
136+
master.extension-pkg-allow-list = ["pydantic"]
137+
design.max-attributes = 8
138+
design.max-locals = 16
139+
design.max-branches = 16
140+
design.max-returns = 8
141+
design.max-args = 7
142+
basic.good-names = [
143+
"a", "b", "c", "d", "e", "f", "i", "j", "k", "r", "v",
144+
"ex", "_", "fp", "im", "nc", "ui",
145+
]
146+
reports.output-format = "colorized"
147+
similarities.ignore-imports = "yes"
148+
messages_control.disable = [
149+
"missing-class-docstring",
150+
"missing-function-docstring",
151+
"line-too-long",
152+
"too-few-public-methods",
153+
"too-many-public-methods",
154+
]
155+
134156
[tool.pytest.ini_options]
135157
minversion = "6.0"
136158
testpaths = [
@@ -171,25 +193,3 @@ warn_no_return = true
171193
strict_optional = true
172194
check_untyped_defs = true
173195
show_error_codes = true
174-
175-
[tool.pylint]
176-
master.py-version = "3.9"
177-
master.extension-pkg-allow-list = ["pydantic"]
178-
design.max-attributes = 8
179-
design.max-locals = 16
180-
design.max-branches = 16
181-
design.max-returns = 8
182-
design.max-args = 7
183-
basic.good-names = [
184-
"a", "b", "c", "d", "e", "f", "i", "j", "k", "r", "v",
185-
"ex", "_", "fp", "im", "nc", "ui",
186-
]
187-
reports.output-format = "colorized"
188-
similarities.ignore-imports = "yes"
189-
messages_control.disable = [
190-
"missing-class-docstring",
191-
"missing-function-docstring",
192-
"line-too-long",
193-
"too-few-public-methods",
194-
"too-many-public-methods",
195-
]

0 commit comments

Comments
 (0)