Skip to content

Commit f0bff05

Browse files
Update from copier (2026-02-15T05:53:01)
Signed-off-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 8f93d07 commit f0bff05

2 files changed

Lines changed: 42 additions & 8 deletions

File tree

.copier-answers.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Changes here will be overwritten by Copier
2-
_commit: b74d698
2+
_commit: 37f89c1
33
_src_path: https://github.com/python-project-templates/base.git
44
add_docs: false
55
add_extension: python

pyproject.toml

Lines changed: 41 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,19 @@
11
[build-system]
2+
<<<<<<< before updating
23
requires = ["hatchling>=1.20"]
34
build-backend = "hatchling.build"
5+
=======
6+
requires = [
7+
"hatchling",
8+
]
9+
build-backend="hatchling.build"
10+
>>>>>>> after updating
411

512
[project]
613
name = "hatch-js"
7-
authors = [{name = "the hatch-js authors", email = "t.paine154@gmail.com"}]
14+
authors = [
15+
{name = "the hatch-js authors", email = "t.paine154@gmail.com"},
16+
]
817
description = "Hatch plugin for JavaScript builds"
918
readme = "README.md"
1019
license = { text = "Apache-2.0" }
@@ -52,6 +61,7 @@ develop = [
5261
"pytest-cov",
5362
"ruff>=0.9,<0.15",
5463
"twine",
64+
"ty",
5565
"uv",
5666
"wheel",
5767
# test
@@ -113,28 +123,52 @@ artifacts = []
113123
src = "/"
114124

115125
[tool.hatch.build.targets.sdist]
116-
packages = ["hatch_js"]
126+
packages = [
127+
"hatch_js",
128+
]
117129

118130
[tool.hatch.build.targets.wheel]
119-
packages = ["hatch_js"]
131+
packages = [
132+
"hatch_js",
133+
]
120134

121135
[tool.hatch.build.targets.wheel.shared-data]
122136

123137
[tool.pytest.ini_options]
124-
addopts = ["-vvv", "--junitxml=junit.xml"]
138+
addopts = [
139+
"-vvv",
140+
"--junitxml=junit.xml",
141+
]
125142
testpaths = "hatch_js/tests"
126143

127144
[tool.ruff]
128145
line-length = 150
129146

130147
[tool.ruff.lint]
131-
extend-select = ["I"]
148+
extend-select = [
149+
"I",
150+
]
132151

133152
[tool.ruff.lint.isort]
134153
combine-as-imports = true
135154
default-section = "third-party"
136-
known-first-party = ["hatch_js"]
137-
section-order = ["future", "standard-library", "third-party", "first-party", "local-folder"]
155+
known-first-party = [
156+
"hatch_js",
157+
]
158+
section-order = [
159+
"future",
160+
"standard-library",
161+
"third-party",
162+
"first-party",
163+
"local-folder",
164+
]
138165

139166
[tool.ruff.lint.per-file-ignores]
167+
<<<<<<< before updating
140168
"__init__.py" = ["F401", "F403"]
169+
=======
170+
"__init__.py" = [
171+
"F401",
172+
"F403",
173+
]
174+
>>>>>>> after updating

0 commit comments

Comments
 (0)