Skip to content

Commit 287bc46

Browse files
feat: move .eslintignore into .eslintrc.cjs ignorePatterns (#1262)
## PR Checklist - [x] Addresses an existing open issue: fixes #1261 - [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 Removes the `.eslintignore` file and its templating. Instead adds the `ignorePatterns` entry in `.eslintrc.cjs` and its templates. Also adds `.eslintignore` to the list of cleared unnecessary files.
1 parent 81fb3eb commit 287bc46

12 files changed

+21
-66
lines changed

.eslintignore

-5
This file was deleted.

.eslintrc.cjs

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ module.exports = {
2222
"plugin:regexp/recommended",
2323
"plugin:vitest/recommended",
2424
],
25+
ignorePatterns: ["!.*", "coverage*", "lib", "node_modules", "pnpm-lock.yaml"],
2526
overrides: [
2627
{
2728
extends: ["plugin:markdown/recommended"],

.github/workflows/test-initialize.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
- uses: ./.github/actions/prepare
77
- run: pnpm run build
88
- run: pnpm run test:initialize
9-
# The template's .eslintignore only ignores coverage, not coverage-*
9+
# The template's ESLint ignorePatterns only ignores coverage, not coverage-*
1010
# https://github.com/JoshuaKGoldberg/create-typescript-app/issues/1131
1111
- if: always()
1212
run: mv coverage coverage-initialize

.github/workflows/test-migrate.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
- uses: ./.github/actions/prepare
77
- run: pnpm run build
88
- run: pnpm run test:migrate
9-
# The template's .eslintignore only ignores coverage, not coverage-*
9+
# The template's ESLint ignorePatterns only ignores coverage, not coverage-*
1010
# https://github.com/JoshuaKGoldberg/create-typescript-app/issues/1131
1111
- if: always()
1212
run: mv coverage coverage-migrate

script/__snapshots__/migrate-test-e2e.js.snap

+9-12
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,5 @@
11
// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
22

3-
exports[`expected file changes > .eslintignore 1`] = `
4-
"--- a/.eslintignore
5-
+++ b/.eslintignore
6-
@@ ... @@
7-
!.*
8-
-coverage*
9-
+coverage
10-
lib
11-
node_modules
12-
pnpm-lock.yaml"
13-
`;
14-
153
exports[`expected file changes > .eslintrc.cjs 1`] = `
164
"--- a/.eslintrc.cjs
175
+++ b/.eslintrc.cjs
@@ -29,6 +17,15 @@ exports[`expected file changes > .eslintrc.cjs 1`] = `
2917
/** @type {import("@types/eslint").Linter.Config} */
3018
module.exports = {
3119
env: {
20+
@@ ... @@ module.exports = {
21+
"plugin:regexp/recommended",
22+
"plugin:vitest/recommended",
23+
],
24+
- ignorePatterns: ["!.*", "coverage*", "lib", "node_modules", "pnpm-lock.yaml"],
25+
+ ignorePatterns: ["!.*", "coverage", "lib", "node_modules", "pnpm-lock.yaml"],
26+
overrides: [
27+
{
28+
extends: ["plugin:markdown/recommended"],
3229
@@ ... @@ module.exports = {
3330
rules: {
3431
// These off-by-default rules work well for this repo and we like them on.

script/migrate-test-e2e.js

-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ import packageData from "../package.json" assert { type: "json" };
99
const filesExpectedToBeChanged = [
1010
"README.md",
1111
"knip.json",
12-
".eslintignore",
1312
".eslintrc.cjs",
1413
".github/workflows/test.yml",
1514
".gitignore",

src/steps/clearUnnecessaryFiles.ts

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ const globPaths = [
1212
".github/codecov.yml",
1313
".babelrc",
1414
".npmignore",
15+
".eslintignore",
1516
".eslintrc",
1617
"CODE_OF_CONDUCT.md",
1718
"CONTRIBUTING.md",

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

-30
This file was deleted.

src/steps/writing/creation/createDotESLintignore.ts

-14
This file was deleted.

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

+2
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ describe("createESLintRC", () => {
5858
node: true,
5959
},
6060
extends: ["eslint:recommended", "plugin:n/recommended"],
61+
ignorePatterns: ["!.*", "lib", "node_modules", "pnpm-lock.yaml"],
6162
overrides: [
6263
{
6364
extends: ["plugin:@typescript-eslint/recommended"],
@@ -124,6 +125,7 @@ describe("createESLintRC", () => {
124125
"plugin:regexp/recommended",
125126
"plugin:vitest/recommended",
126127
],
128+
ignorePatterns: ["!.*", "coverage", "lib", "node_modules", "pnpm-lock.yaml"],
127129
overrides: [
128130
{
129131
extends: ["plugin:markdown/recommended"],

src/steps/writing/creation/createESLintRC.ts

+6
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,12 @@ module.exports = {
2424
options.excludeTests ? "" : `"plugin:vitest/recommended",`
2525
}
2626
],
27+
ignorePatterns: [
28+
"!.*",${options.excludeTests ? "" : `\n "coverage",`}
29+
"lib",
30+
"node_modules",
31+
"pnpm-lock.yaml",
32+
],
2733
overrides: [${
2834
options.excludeLintMd
2935
? ""

src/steps/writing/creation/rootFiles.ts

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import { Options } from "../../../shared/types.js";
2-
import { createDotESLintignore } from "./createDotESLintignore.js";
32
import { createDotGitignore } from "./createDotGitignore.js";
43
import { createESLintRC } from "./createESLintRC.js";
54
import { createTsupConfig } from "./createTsupConfig.js";
@@ -11,7 +10,6 @@ import { writePackageJson } from "./writePackageJson.js";
1110
export async function createRootFiles(options: Options) {
1211
return {
1312
".all-contributorsrc": await writeAllContributorsRC(options),
14-
".eslintignore": createDotESLintignore(options),
1513
".eslintrc.cjs": await createESLintRC(options),
1614
".gitignore": createDotGitignore(options),
1715
...(!options.excludeLintMd && {

0 commit comments

Comments
 (0)