Skip to content

Commit

Permalink
chore: Add .vscode to eslintignore (#48020)
Browse files Browse the repository at this point in the history
### What?

Add `.vscode` to `.eslintignore`.

### Why?

We ignore `.vscode` folder in our tests, but Next.js itself creates it
so manually running tests locally will causing them to be added. That
causes ESLint to fail because it checks JSON files inside `.vscode`
folder.
  • Loading branch information
shuding committed Apr 7, 2023
1 parent 536b4dc commit 98dfbc0
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions .eslintignore
@@ -1,6 +1,7 @@
node_modules
**/.next/**
**/_next/**
**/.vscode/**
**/dist/**
e2e-tests/**
examples/with-eslint/**
Expand Down

0 comments on commit 98dfbc0

Please sign in to comment.