Skip to content

Commit 1821c35

Browse files
chore(deps-dev): pre-commit autoupdate (#252)
* chore(deps-dev): pre-commit autoupdate updates: - [github.com/tox-dev/pyproject-fmt: 1.8.0 → 2.1.3](tox-dev/pyproject-fmt@1.8.0...2.1.3) - [github.com/astral-sh/ruff-pre-commit: v0.4.3 → v0.4.7](astral-sh/ruff-pre-commit@v0.4.3...v0.4.7) * [pre-commit.ci] auto fixes --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
1 parent 184589f commit 1821c35

File tree

2 files changed

+43
-25
lines changed

2 files changed

+43
-25
lines changed

.pre-commit-config.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ repos:
1616
- id: trailing-whitespace
1717

1818
- repo: https://github.com/tox-dev/pyproject-fmt
19-
rev: "1.8.0"
19+
rev: "2.1.3"
2020
hooks:
2121
- id: pyproject-fmt
2222

2323
- repo: https://github.com/astral-sh/ruff-pre-commit
24-
rev: "v0.4.3"
24+
rev: "v0.4.7"
2525
hooks:
2626
- id: ruff
2727
args: [--fix, --exit-non-zero-on-fix, --show-fixes]

pyproject.toml

+41-23
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,20 @@ name = "tap-jotform"
1010
version = "0.0.0"
1111
description = "Singer tap for Jotform, built with the Meltano SDK for Singer Taps."
1212
license = "Apache-2.0"
13-
authors = ["Edgar Ramírez-Mondragón <[email protected]>"]
14-
maintainers = ["Edgar Ramírez-Mondragón <[email protected]>"]
13+
authors = [
14+
"Edgar Ramírez-Mondragón <[email protected]>",
15+
]
16+
maintainers = [
17+
"Edgar Ramírez-Mondragón <[email protected]>",
18+
]
1519
readme = "README.md"
1620
homepage = "https://github.com/edgarrmondragon/tap-jotform"
1721
repository = "https://github.com/edgarrmondragon/tap-jotform"
1822
documentation = "https://github.com/edgarrmondragon/tap-jotform/#readme"
19-
keywords = ["ELT", "Jotform"]
23+
keywords = [
24+
"ELT",
25+
"Jotform",
26+
]
2027

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

2835
[tool.poetry.group.dev.dependencies]
2936
pytest = "==8.*"
30-
singer-sdk = { version = "==0.37.*", extras = ["testing"] }
37+
singer-sdk = { version = "==0.37.*", extras = [
38+
"testing",
39+
] }
3140

3241
[tool.poetry.scripts]
3342
# CLI declaration
@@ -49,28 +58,37 @@ style = "pep440"
4958
vcs = "git"
5059

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

56-
[tool.ruff.lint]
57-
ignore = ["ANN101", "DJ", "PD", "COM812", "ISC001"]
58-
select = ["ALL"]
59-
60-
[tool.ruff.lint.flake8-annotations]
61-
allow-star-arg-any = true
62-
63-
[tool.ruff.lint.isort]
64-
known-first-party = ["tap_jotform"]
65-
66-
[tool.ruff.lint.per-file-ignores]
67-
"noxfile.py" = ["ANN"]
68-
"tests/*" = ["ANN"]
69-
70-
[tool.ruff.lint.pydocstyle]
71-
convention = "google"
63+
line-length = 88
64+
src = [
65+
"noxfile.py",
66+
"tap_jotform",
67+
"tests",
68+
]
69+
lint.select = [
70+
"ALL",
71+
]
72+
lint.ignore = [
73+
"ANN101",
74+
"COM812",
75+
"DJ",
76+
"ISC001",
77+
"PD",
78+
]
79+
lint.per-file-ignores."noxfile.py" = [
80+
"ANN",
81+
]
82+
lint.per-file-ignores."tests/*" = [
83+
"ANN",
84+
]
85+
lint.flake8-annotations.allow-star-arg-any = true
86+
lint.isort.known-first-party = [
87+
"tap_jotform",
88+
]
89+
lint.pydocstyle.convention = "google"
7290

7391
[tool.pytest.ini_options]
7492
addopts = [
75-
"-vvv",
93+
"-vvv",
7694
]

0 commit comments

Comments
 (0)