Skip to content

Commit fea7138

Browse files
committed
style(pyproject.toml): collapse multi-line arrays to single lines
1 parent 5c8ae4b commit fea7138

1 file changed

Lines changed: 6 additions & 22 deletions

File tree

pyproject.toml

Lines changed: 6 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,7 @@ build-backend = "hatchling.build"
55
[project]
66
name = "rattle-lint"
77
readme = "README.md"
8-
authors = [
9-
{name="zigai"},
10-
]
8+
authors = [{ name = "zigai" }]
119
license = "MIT"
1210
license-files = ["LICENSE", "NOTICE"]
1311
classifiers = [
@@ -56,12 +54,8 @@ dev = [
5654
"usort == 1.0.8.post1",
5755
"ruff==0.15.15",
5856
]
59-
lsp = [
60-
"pygls[ws] ~= 2.0.0",
61-
]
62-
pretty = [
63-
"rich >= 12.6.0",
64-
]
57+
lsp = ["pygls[ws] ~= 2.0.0"]
58+
pretty = ["rich >= 12.6.0"]
6559

6660
[project.scripts]
6761
rattle = "rattle.cli:main"
@@ -94,11 +88,7 @@ enable = [".examples.noop"]
9488
source = "vcs"
9589

9690
[tool.hatch.build]
97-
exclude = [
98-
"/.github",
99-
"/examples",
100-
"/legacy",
101-
]
91+
exclude = ["/.github", "/examples", "/legacy"]
10292

10393
[tool.hatch.build.targets.wheel]
10494
packages = ["src/rattle"]
@@ -130,16 +120,10 @@ python_files = [
130120
]
131121

132122
[tool.coverage.run]
133-
omit = [
134-
"/tmp/*",
135-
"*/tmp/*",
136-
]
123+
omit = ["/tmp/*", "*/tmp/*"]
137124

138125
[tool.coverage.report]
139-
omit = [
140-
"/tmp/*",
141-
"*/tmp/*",
142-
]
126+
omit = ["/tmp/*", "*/tmp/*"]
143127

144128
[tool.ruff]
145129
line-length = 100

0 commit comments

Comments
 (0)