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 8ddf405 commit 11fa081
Showing 1 changed file with 41 additions and 23 deletions.
64 changes: 41 additions & 23 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,20 @@ name = "tap-jotform"
version = "0.0.0"
description = "Singer tap for Jotform, built with the Meltano SDK for Singer Taps."
license = "Apache-2.0"
authors = ["Edgar Ramírez-Mondragón <[email protected]>"]
maintainers = ["Edgar Ramírez-Mondragón <[email protected]>"]
authors = [
"Edgar Ramírez-Mondragón <[email protected]>",
]
maintainers = [
"Edgar Ramírez-Mondragón <[email protected]>",
]
readme = "README.md"
homepage = "https://github.com/edgarrmondragon/tap-jotform"
repository = "https://github.com/edgarrmondragon/tap-jotform"
documentation = "https://github.com/edgarrmondragon/tap-jotform/#readme"
keywords = ["ELT", "Jotform"]
keywords = [
"ELT",
"Jotform",
]

[tool.poetry.dependencies]
python = ">=3.8"
Expand All @@ -27,7 +34,9 @@ structlog = "==24.2.*"

[tool.poetry.group.dev.dependencies]
pytest = "==8.*"
singer-sdk = { version = "==0.37.*", extras = ["testing"] }
singer-sdk = { version = "==0.37.*", extras = [
"testing",
] }

[tool.poetry.scripts]
# CLI declaration
Expand All @@ -49,28 +58,37 @@ style = "pep440"
vcs = "git"

[tool.ruff]
line-length = 88
src = ["tap_jotform", "tests", "noxfile.py"]
target-version = "py38"

[tool.ruff.lint]
ignore = ["ANN101", "DJ", "PD", "COM812", "ISC001"]
select = ["ALL"]

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

[tool.ruff.lint.isort]
known-first-party = ["tap_jotform"]

[tool.ruff.lint.per-file-ignores]
"noxfile.py" = ["ANN"]
"tests/*" = ["ANN"]

[tool.ruff.lint.pydocstyle]
convention = "google"
line-length = 88
src = [
"noxfile.py",
"tap_jotform",
"tests",
]
lint.select = [
"ALL",
]
lint.ignore = [
"ANN101",
"COM812",
"DJ",
"ISC001",
"PD",
]
lint.per-file-ignores."noxfile.py" = [
"ANN",
]
lint.per-file-ignores."tests/*" = [
"ANN",
]
lint.flake8-annotations.allow-star-arg-any = true
lint.isort.known-first-party = [
"tap_jotform",
]
lint.pydocstyle.convention = "google"

[tool.pytest.ini_options]
addopts = [
"-vvv",
"-vvv",
]

0 comments on commit 11fa081

Please sign in to comment.