From 98dfbc077537595341e3932283e027a1ca28af1b Mon Sep 17 00:00:00 2001 From: Shu Ding Date: Fri, 7 Apr 2023 17:51:26 +0200 Subject: [PATCH] chore: Add `.vscode` to eslintignore (#48020) ### 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. --- .eslintignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.eslintignore b/.eslintignore index 2ccbb94acecb..1909ecb580b1 100644 --- a/.eslintignore +++ b/.eslintignore @@ -1,6 +1,7 @@ node_modules **/.next/** **/_next/** +**/.vscode/** **/dist/** e2e-tests/** examples/with-eslint/**