Skip to content

Commit ce7d3e5

Browse files
feat: remove no-padding-line-between-statements (#1459)
## PR Checklist - [x] Addresses an existing open issue: fixes #1458 - [x] That issue was marked as [`status: accepting prs`](https://github.com/JoshuaKGoldberg/create-typescript-app/issues?q=is%3Aopen+is%3Aissue+label%3A%22status%3A+accepting+prs%22) - [x] Steps in [CONTRIBUTING.md](https://github.com/JoshuaKGoldberg/create-typescript-app/blob/main/.github/CONTRIBUTING.md) were taken ## Overview Straightforward removal.
1 parent 83f09fb commit ce7d3e5

File tree

3 files changed

+0
-12
lines changed

3 files changed

+0
-12
lines changed

.eslintrc.cjs

-4
Original file line numberDiff line numberDiff line change
@@ -166,10 +166,6 @@ module.exports = {
166166
"no-mixed-spaces-and-tabs": "off",
167167

168168
// Stylistic concerns that don't interfere with Prettier
169-
"@typescript-eslint/padding-line-between-statements": [
170-
"error",
171-
{ blankLine: "always", next: "*", prev: "block-like" },
172-
],
173169
"no-useless-rename": "error",
174170
"object-shorthand": "error",
175171
"perfectionist/sort-objects": [

src/steps/writing/creation/createESLintRC.test.ts

-4
Original file line numberDiff line numberDiff line change
@@ -254,10 +254,6 @@ describe("createESLintRC", () => {
254254
"no-mixed-spaces-and-tabs": "off",
255255
256256
// Stylistic concerns that don't interfere with Prettier
257-
"@typescript-eslint/padding-line-between-statements": [
258-
"error",
259-
{ blankLine: "always", next: "*", prev: "block-like" },
260-
],
261257
"no-useless-rename": "error",
262258
"object-shorthand": "error",
263259
"perfectionist/sort-objects": [

src/steps/writing/creation/createESLintRC.ts

-4
Original file line numberDiff line numberDiff line change
@@ -220,10 +220,6 @@ module.exports = {
220220
options.excludeLintStylistic
221221
? ""
222222
: `// Stylistic concerns that don't interfere with Prettier
223-
"@typescript-eslint/padding-line-between-statements": [
224-
"error",
225-
{ blankLine: "always", next: "*", prev: "block-like" },
226-
],
227223
"no-useless-rename": "error",
228224
"object-shorthand": "error",
229225
`

0 commit comments

Comments
 (0)