|
1 | 1 | [build-system] |
| 2 | +<<<<<<< before updating |
2 | 3 | requires = ["hatchling>=1.20"] |
3 | 4 | build-backend = "hatchling.build" |
| 5 | +======= |
| 6 | +requires = [ |
| 7 | + "hatchling", |
| 8 | +] |
| 9 | +build-backend="hatchling.build" |
| 10 | +>>>>>>> after updating |
4 | 11 |
|
5 | 12 | [project] |
6 | 13 | 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 | +] |
8 | 17 | description = "Hatch plugin for JavaScript builds" |
9 | 18 | readme = "README.md" |
10 | 19 | license = { text = "Apache-2.0" } |
@@ -52,6 +61,7 @@ develop = [ |
52 | 61 | "pytest-cov", |
53 | 62 | "ruff>=0.9,<0.15", |
54 | 63 | "twine", |
| 64 | + "ty", |
55 | 65 | "uv", |
56 | 66 | "wheel", |
57 | 67 | # test |
@@ -113,28 +123,52 @@ artifacts = [] |
113 | 123 | src = "/" |
114 | 124 |
|
115 | 125 | [tool.hatch.build.targets.sdist] |
116 | | -packages = ["hatch_js"] |
| 126 | +packages = [ |
| 127 | + "hatch_js", |
| 128 | +] |
117 | 129 |
|
118 | 130 | [tool.hatch.build.targets.wheel] |
119 | | -packages = ["hatch_js"] |
| 131 | +packages = [ |
| 132 | + "hatch_js", |
| 133 | +] |
120 | 134 |
|
121 | 135 | [tool.hatch.build.targets.wheel.shared-data] |
122 | 136 |
|
123 | 137 | [tool.pytest.ini_options] |
124 | | -addopts = ["-vvv", "--junitxml=junit.xml"] |
| 138 | +addopts = [ |
| 139 | + "-vvv", |
| 140 | + "--junitxml=junit.xml", |
| 141 | +] |
125 | 142 | testpaths = "hatch_js/tests" |
126 | 143 |
|
127 | 144 | [tool.ruff] |
128 | 145 | line-length = 150 |
129 | 146 |
|
130 | 147 | [tool.ruff.lint] |
131 | | -extend-select = ["I"] |
| 148 | +extend-select = [ |
| 149 | + "I", |
| 150 | +] |
132 | 151 |
|
133 | 152 | [tool.ruff.lint.isort] |
134 | 153 | combine-as-imports = true |
135 | 154 | 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 | +] |
138 | 165 |
|
139 | 166 | [tool.ruff.lint.per-file-ignores] |
| 167 | +<<<<<<< before updating |
140 | 168 | "__init__.py" = ["F401", "F403"] |
| 169 | +======= |
| 170 | +"__init__.py" = [ |
| 171 | + "F401", |
| 172 | + "F403", |
| 173 | +] |
| 174 | +>>>>>>> after updating |
0 commit comments