Skip to content

Commit

Permalink
docs: fix ignoring-eslint-url during build (#26165)
Browse files Browse the repository at this point in the history
## Documentation
removes dot from docs link as the terminal appends the dot to the link, which leads to 404
  • Loading branch information
David Vaness committed Jun 16, 2021
1 parent 3c65c34 commit b0e09d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/next/lib/has-necessary-dependencies.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ export async function hasNecessaryDependencies(
const removalLintMsg =
`\n\n` +
(lintDuringBuild
? `If you do not want to run ESLint during builds, disable it in next.config.js. See https://nextjs.org/docs/api-reference/next.config.js/ignoring-eslint.`
? `If you do not want to run ESLint during builds, disable it in next.config.js. See https://nextjs.org/docs/api-reference/next.config.js/ignoring-eslint`
: `Once installed, run ${chalk.bold.cyan('next lint')} again.`)
const removalMsg = checkTSDeps ? removalTSMsg : removalLintMsg

Expand Down

0 comments on commit b0e09d2

Please sign in to comment.