From 3c03c051fc04d6eebe85790fff0fac541452d878 Mon Sep 17 00:00:00 2001 From: github-actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 15 Feb 2026 05:55:19 +0000 Subject: [PATCH 1/2] Update from copier (2026-02-15T05:55:19) Signed-off-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com> --- .copier-answers.yaml | 2 +- pyproject.toml | 45 ++++++++++++++++++++++++++++++++++++-------- 2 files changed, 38 insertions(+), 9 deletions(-) diff --git a/.copier-answers.yaml b/.copier-answers.yaml index 57a9884..36e48ed 100644 --- a/.copier-answers.yaml +++ b/.copier-answers.yaml @@ -1,5 +1,5 @@ # Changes here will be overwritten by Copier -_commit: b74d698 +_commit: 37f89c1 _src_path: https://github.com/python-project-templates/base.git add_docs: false add_extension: python diff --git a/pyproject.toml b/pyproject.toml index 96159a8..8627a9d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,10 +1,14 @@ [build-system] -requires = ["hatchling"] +requires = [ + "hatchling", +] build-backend="hatchling.build" [project] name = "hatch-javascript" -authors = [{name = "the hatch-javascript authors", email = "t.paine154@gmail.com"}] +authors = [ + {name = "the hatch-javascript authors", email = "t.paine154@gmail.com"}, +] description = "Hatch plugin for JavaScript" readme = "README.md" license = { text = "Apache-2.0" } @@ -47,6 +51,7 @@ develop = [ "pytest-cov", "ruff>=0.9,<0.15", "twine", + "ty", "uv", "wheel", ] @@ -101,28 +106,52 @@ artifacts = [] src = "/" [tool.hatch.build.targets.sdist] -packages = ["hatch_javascript"] +packages = [ + "hatch_javascript", +] [tool.hatch.build.targets.wheel] -packages = ["hatch_javascript"] +packages = [ + "hatch_javascript", +] [tool.hatch.build.targets.wheel.shared-data] [tool.pytest.ini_options] -addopts = ["-vvv", "--junitxml=junit.xml"] +addopts = [ + "-vvv", + "--junitxml=junit.xml", +] testpaths = "hatch_javascript/tests" [tool.ruff] line-length = 150 [tool.ruff.lint] -extend-select = ["I"] +extend-select = [ + "I", +] [tool.ruff.lint.isort] combine-as-imports = true default-section = "third-party" -known-first-party = ["hatch_javascript"] -section-order = ["future", "standard-library", "third-party", "first-party", "local-folder"] +known-first-party = [ + "hatch_javascript", +] +section-order = [ + "future", + "standard-library", + "third-party", + "first-party", + "local-folder", +] [tool.ruff.lint.per-file-ignores] +<<<<<<< before updating "__init__.py" = ["F401", "F403"] +======= +"__init__.py" = [ + "F401", + "F403", +] +>>>>>>> after updating From baed637847ef990f19e4eb084afa2e76286f8c03 Mon Sep 17 00:00:00 2001 From: Tim Paine <3105306+timkpaine@users.noreply.github.com> Date: Sun, 15 Feb 2026 00:57:00 -0500 Subject: [PATCH 2/2] Update pyproject.toml --- pyproject.toml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 8627a9d..991f7d4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -147,11 +147,7 @@ section-order = [ ] [tool.ruff.lint.per-file-ignores] -<<<<<<< before updating -"__init__.py" = ["F401", "F403"] -======= "__init__.py" = [ "F401", "F403", ] ->>>>>>> after updating