ESLint changes don't show when running turbo build
Hi, in my .eslintrc.cjs file I've made some changes which include warning instead of throwing errors for certain rules, for example this is my file:
I've changed "no-misused-promises" to warn instead of showing an error but when I run turbo build I get the error:
Shouldn't this just show a warning instead of throwing an error or am I doing something wrong? I'm using Next 13.4 with the app router and this occurs when running both npm run build and turbo build.
When I change them from warn to off the error still occurs.
I've changed "no-misused-promises" to warn instead of showing an error but when I run turbo build I get the error:
Shouldn't this just show a warning instead of throwing an error or am I doing something wrong? I'm using Next 13.4 with the app router and this occurs when running both npm run build and turbo build.
When I change them from warn to off the error still occurs.