We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bb6a0d1 commit 85ee398Copy full SHA for 85ee398
1 file changed
pyproject.toml
@@ -47,6 +47,7 @@ dev = [
47
"mypy >=0.921,<1.8",
48
"pip-audit >=2.4.4,<3.0.0",
49
"pylint >=2.9.3,<3.0.3",
50
+ "perflint >=0.7.3,<1.0.0",
51
"cyclonedx-bom >=3.11.0,<4.0.0",
52
]
53
docs = [
@@ -172,6 +173,9 @@ ignore_missing_imports = true
172
173
# https://pylint.pycqa.org/en/latest/user_guide/configuration/index.html
174
[tool.pylint.MASTER]
175
fail-under = 10.0
176
+load-plugins = [
177
+ "perflint", # A Linter for performance anti-patterns.
178
+]
179
disable = [
180
"fixme",
181
"line-too-long", # Replaced by Flake8 Bugbear B950 check.
0 commit comments