chore(lint): configure project wide linting to make use of Turborepo again

Don't know why I didn't get this to work before with the cwd workaround...
This commit is contained in:
Joakim Carlstein 2023-11-17 14:19:58 +01:00
parent d5fe58c0db
commit 5b00fd4fdb
6 changed files with 16 additions and 7 deletions

View file

@ -24,7 +24,12 @@
"persistent": true
},
"checks": {
"dependsOn": ["build", "test"],
"dependsOn": ["build", "lint", "test"],
"outputs": []
},
"lint": {
"dependsOn": ["^build"],
"inputs": ["src/**/*"],
"outputs": []
}
}