Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: move .eslintignore into .eslintrc.cjs ignorePatterns #1262

Merged
merged 1 commit into from
Jan 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .eslintignore

This file was deleted.

1 change: 1 addition & 0 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ module.exports = {
"plugin:regexp/recommended",
"plugin:vitest/recommended",
],
ignorePatterns: ["!.*", "coverage*", "lib", "node_modules", "pnpm-lock.yaml"],
overrides: [
{
extends: ["plugin:markdown/recommended"],
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-initialize.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
- uses: ./.github/actions/prepare
- run: pnpm run build
- run: pnpm run test:initialize
# The template's .eslintignore only ignores coverage, not coverage-*
# The template's ESLint ignorePatterns only ignores coverage, not coverage-*
# https://github.com/JoshuaKGoldberg/create-typescript-app/issues/1131
- if: always()
run: mv coverage coverage-initialize
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-migrate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
- uses: ./.github/actions/prepare
- run: pnpm run build
- run: pnpm run test:migrate
# The template's .eslintignore only ignores coverage, not coverage-*
# The template's ESLint ignorePatterns only ignores coverage, not coverage-*
# https://github.com/JoshuaKGoldberg/create-typescript-app/issues/1131
- if: always()
run: mv coverage coverage-migrate
Expand Down
21 changes: 9 additions & 12 deletions script/__snapshots__/migrate-test-e2e.js.snap
Original file line number Diff line number Diff line change
@@ -1,17 +1,5 @@
// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html

exports[`expected file changes > .eslintignore 1`] = `
"--- a/.eslintignore
+++ b/.eslintignore
@@ ... @@
!.*
-coverage*
+coverage
lib
node_modules
pnpm-lock.yaml"
`;

exports[`expected file changes > .eslintrc.cjs 1`] = `
"--- a/.eslintrc.cjs
+++ b/.eslintrc.cjs
Expand All @@ -29,6 +17,15 @@ exports[`expected file changes > .eslintrc.cjs 1`] = `
/** @type {import("@types/eslint").Linter.Config} */
module.exports = {
env: {
@@ ... @@ module.exports = {
"plugin:regexp/recommended",
"plugin:vitest/recommended",
],
- ignorePatterns: ["!.*", "coverage*", "lib", "node_modules", "pnpm-lock.yaml"],
+ ignorePatterns: ["!.*", "coverage", "lib", "node_modules", "pnpm-lock.yaml"],
overrides: [
{
extends: ["plugin:markdown/recommended"],
@@ ... @@ module.exports = {
rules: {
// These off-by-default rules work well for this repo and we like them on.
Expand Down
1 change: 0 additions & 1 deletion script/migrate-test-e2e.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ import packageData from "../package.json" assert { type: "json" };
const filesExpectedToBeChanged = [
"README.md",
"knip.json",
".eslintignore",
".eslintrc.cjs",
".github/workflows/test.yml",
".gitignore",
Expand Down
1 change: 1 addition & 0 deletions src/steps/clearUnnecessaryFiles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ const globPaths = [
".github/codecov.yml",
".babelrc",
".npmignore",
".eslintignore",
".eslintrc",
"CODE_OF_CONDUCT.md",
"CONTRIBUTING.md",
Expand Down
30 changes: 0 additions & 30 deletions src/steps/writing/creation/createDotESLintignore.test.ts

This file was deleted.

14 changes: 0 additions & 14 deletions src/steps/writing/creation/createDotESLintignore.ts

This file was deleted.

2 changes: 2 additions & 0 deletions src/steps/writing/creation/createESLintRC.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ describe("createESLintRC", () => {
node: true,
},
extends: ["eslint:recommended", "plugin:n/recommended"],
ignorePatterns: ["!.*", "lib", "node_modules", "pnpm-lock.yaml"],
overrides: [
{
extends: ["plugin:@typescript-eslint/recommended"],
Expand Down Expand Up @@ -124,6 +125,7 @@ describe("createESLintRC", () => {
"plugin:regexp/recommended",
"plugin:vitest/recommended",
],
ignorePatterns: ["!.*", "coverage", "lib", "node_modules", "pnpm-lock.yaml"],
overrides: [
{
extends: ["plugin:markdown/recommended"],
Expand Down
6 changes: 6 additions & 0 deletions src/steps/writing/creation/createESLintRC.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,12 @@ module.exports = {
options.excludeTests ? "" : `"plugin:vitest/recommended",`
}
],
ignorePatterns: [
"!.*",${options.excludeTests ? "" : `\n "coverage",`}
"lib",
"node_modules",
"pnpm-lock.yaml",
],
overrides: [${
options.excludeLintMd
? ""
Expand Down
2 changes: 0 additions & 2 deletions src/steps/writing/creation/rootFiles.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { Options } from "../../../shared/types.js";
import { createDotESLintignore } from "./createDotESLintignore.js";
import { createDotGitignore } from "./createDotGitignore.js";
import { createESLintRC } from "./createESLintRC.js";
import { createTsupConfig } from "./createTsupConfig.js";
Expand All @@ -11,7 +10,6 @@ import { writePackageJson } from "./writePackageJson.js";
export async function createRootFiles(options: Options) {
return {
".all-contributorsrc": await writeAllContributorsRC(options),
".eslintignore": createDotESLintignore(options),
".eslintrc.cjs": await createESLintRC(options),
".gitignore": createDotGitignore(options),
...(!options.excludeLintMd && {
Expand Down