mirror of
https://github.com/ets-cfuhrman-pfe/EvalueTonSavoir.git
synced 2025-08-11 21:23:54 -04:00
chatgpt recommendation for eslint in a vscode workspace with a monorepo structure
This commit is contained in:
parent
587daac648
commit
6e9b65eb90
3 changed files with 14 additions and 0 deletions
6
.vscode/settings.json
vendored
Normal file
6
.vscode/settings.json
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"eslint.workingDirectories": [
|
||||
{ "directory": "client" },
|
||||
{ "directory": "server" }
|
||||
]
|
||||
}
|
||||
4
client/.eslintignore
Normal file
4
client/.eslintignore
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
node_modules/
|
||||
build/
|
||||
dist/
|
||||
coverage/
|
||||
4
server/.eslintignore
Normal file
4
server/.eslintignore
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
node_modules/
|
||||
build/
|
||||
dist/
|
||||
coverage/
|
||||
Loading…
Reference in a new issue