Skip to content

Commit f8ebde1

Browse files
authored
Merge pull request #18 from python-project-templates/copier-update-2026-02-15T05-55-19
Update from copier (2026-02-15T05:55:19)
2 parents 5da9143 + baed637 commit f8ebde1

File tree

2 files changed

+35
-10
lines changed

2 files changed

+35
-10
lines changed

.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: 34 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
11
[build-system]
2-
requires = ["hatchling"]
2+
requires = [
3+
"hatchling",
4+
]
35
build-backend="hatchling.build"
46

57
[project]
68
name = "hatch-javascript"
7-
authors = [{name = "the hatch-javascript authors", email = "t.paine154@gmail.com"}]
9+
authors = [
10+
{name = "the hatch-javascript authors", email = "t.paine154@gmail.com"},
11+
]
812
description = "Hatch plugin for JavaScript"
913
readme = "README.md"
1014
license = { text = "Apache-2.0" }
@@ -47,6 +51,7 @@ develop = [
4751
"pytest-cov",
4852
"ruff>=0.9,<0.15",
4953
"twine",
54+
"ty",
5055
"uv",
5156
"wheel",
5257
]
@@ -101,28 +106,48 @@ artifacts = []
101106
src = "/"
102107

103108
[tool.hatch.build.targets.sdist]
104-
packages = ["hatch_javascript"]
109+
packages = [
110+
"hatch_javascript",
111+
]
105112

106113
[tool.hatch.build.targets.wheel]
107-
packages = ["hatch_javascript"]
114+
packages = [
115+
"hatch_javascript",
116+
]
108117

109118
[tool.hatch.build.targets.wheel.shared-data]
110119

111120
[tool.pytest.ini_options]
112-
addopts = ["-vvv", "--junitxml=junit.xml"]
121+
addopts = [
122+
"-vvv",
123+
"--junitxml=junit.xml",
124+
]
113125
testpaths = "hatch_javascript/tests"
114126

115127
[tool.ruff]
116128
line-length = 150
117129

118130
[tool.ruff.lint]
119-
extend-select = ["I"]
131+
extend-select = [
132+
"I",
133+
]
120134

121135
[tool.ruff.lint.isort]
122136
combine-as-imports = true
123137
default-section = "third-party"
124-
known-first-party = ["hatch_javascript"]
125-
section-order = ["future", "standard-library", "third-party", "first-party", "local-folder"]
138+
known-first-party = [
139+
"hatch_javascript",
140+
]
141+
section-order = [
142+
"future",
143+
"standard-library",
144+
"third-party",
145+
"first-party",
146+
"local-folder",
147+
]
126148

127149
[tool.ruff.lint.per-file-ignores]
128-
"__init__.py" = ["F401", "F403"]
150+
"__init__.py" = [
151+
"F401",
152+
"F403",
153+
]

0 commit comments

Comments
 (0)