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 May 20, 2024
1 parent 886c898 commit c36495d
Showing 1 changed file with 16 additions and 23 deletions.
39 changes: 16 additions & 23 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -57,44 +57,37 @@ style = "pep440"
vcs = "git"

[tool.ruff]
target-version = "py38"

line-length = 88
src = [
"tap_dbt",
"tests",
]
target-version = "py38"

[tool.ruff.lint]
ignore = [
"ANN101", # missing-type-self
"FIX002", # line-contains-todo
"COM812", # missing-trailing-comma
"ISC001", # single-line-implicit-string-concatenation
]
select = [
lint.select = [
"ALL",
]
unfixable = [
lint.per-file-ignores."tests/*" = [
"ANN201",
"S101",
]
lint.unfixable = [
"ERA001", # commented-out-code
]

[tool.ruff.lint.isort]
known-first-party = [
lint.isort.known-first-party = [
"tap_dbt",
]
required-imports = [
lint.isort.required-imports = [
"from __future__ import annotations",
]

[tool.ruff.lint.per-file-ignores]
"tests/*" = [
"ANN201",
"S101",
lint.pydocstyle.convention = "google"
lint.ignore = [
"ANN101", # missing-type-self
"COM812", # missing-trailing-comma
"FIX002", # line-contains-todo
"ISC001", # single-line-implicit-string-concatenation
]

[tool.ruff.lint.pydocstyle]
convention = "google"

[tool.deptry]
known_first_party = [
"tap_dbt",
Expand Down

0 comments on commit c36495d

Please sign in to comment.