Skip to content

Commit

Permalink
docs: remove copy mentioning appDir as an experimental feature (#51403)
Browse files Browse the repository at this point in the history
The documentation for `(App or Pages) / Building your Application /
Configuring / Eslint`
[here](https://nextjs.org/docs/app/building-your-application/configuring/eslint#linting-custom-directories-and-files)
is mentioning the appDir as an experimental feature that needs to be
enabled.

This PR update it's content removing this mention

Co-authored-by: JJ Kasper <jj@jjsweb.site>
  • Loading branch information
brunoeduardodev and ijjk committed Jun 16, 2023
1 parent c78c379 commit 94c9418
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -127,7 +127,7 @@ If you're using `eslint-plugin-next` in a project where Next.js isn't installed

## Linting Custom Directories and Files

By default, Next.js will run ESLint for all files in the `pages/`, `app` (only if the experimental `appDir` feature is enabled), `components/`, `lib/`, and `src/` directories. However, you can specify which directories using the `dirs` option in the `eslint` config in `next.config.js` for production builds:
By default, Next.js will run ESLint for all files in the `pages/`, `app/`, `components/`, `lib/`, and `src/` directories. However, you can specify which directories using the `dirs` option in the `eslint` config in `next.config.js` for production builds:

```js filename="next.config.js"
module.exports = {
Expand Down

0 comments on commit 94c9418

Please sign in to comment.