Skip to content

Commit

Permalink
Ignore some Ruff rules
Browse files Browse the repository at this point in the history
  • Loading branch information
ReubenFrankel committed Mar 6, 2024
1 parent 2c6cafa commit eebbe9c
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,13 +46,21 @@ target-version = "py38"

[tool.ruff.lint]
ignore = [
"ANN001", # missing-type-function-argument
"ANN101", # missing-type-self
"ANN102", # missing-type-cls
"ANN201", # missing-return-type-undocumented-public-function
"ANN202", # missing-return-type-private-function
"COM812", # missing-trailing-comma
"ISC001", # single-line-implicit-string-concatenation
]
select = ["ALL"]

[tool.ruff.lint.per-file-ignores]
"tap_spotify/schemas/**/*" = [
"D101", # undocumented-public-class
]

[tool.ruff.flake8-annotations]
allow-star-arg-any = true

Expand Down

0 comments on commit eebbe9c

Please sign in to comment.