chatgpt recommendation for eslint in a vscode workspace with a monorepo structure

This commit is contained in:
C. Fuhrman 2025-06-17 14:39:00 -04:00
parent 587daac648
commit 6e9b65eb90
3 changed files with 14 additions and 0 deletions

6
.vscode/settings.json vendored Normal file
View file

@ -0,0 +1,6 @@
{
"eslint.workingDirectories": [
{ "directory": "client" },
{ "directory": "server" }
]
}

4
client/.eslintignore Normal file
View file

@ -0,0 +1,4 @@
node_modules/
build/
dist/
coverage/

4
server/.eslintignore Normal file
View file

@ -0,0 +1,4 @@
node_modules/
build/
dist/
coverage/