Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
pre-commit-ci[bot] committed Jun 3, 2024
1 parent 265bf2d commit c381efb
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,15 @@ line-length = 88
lint.select = [
"ALL",
]
lint.ignore = [
"ANN101", # missing-type-self
"COM812", # missing-trailing-comma
"DJ", # flake8-django
"FIX002", # line-contains-todo
"ISC001", # single-line-implicit-string-concatenation
"PD", # pandas-vet
]

lint.per-file-ignores."tests/*" = [
"ANN201", # missing-return-type-public-function
"S101", # assert
Expand All @@ -113,14 +122,6 @@ lint.isort.required-imports = [
"from __future__ import annotations",
]
lint.pydocstyle.convention = "google"
lint.ignore = [
"ANN101", # missing-type-self
"COM812", # missing-trailing-comma
"DJ", # flake8-django
"FIX002", # line-contains-todo
"ISC001", # single-line-implicit-string-concatenation
"PD", # pandas-vet
]

[tool.deptry.package_module_name_map]
mypy = "mypy"
Expand Down

0 comments on commit c381efb

Please sign in to comment.