How to force a compilation and ignore @typescript-eslint errors?

Viewed 3557

I'm currently working on a React project, initiated with Create React App. Currently, to compile, I am using the default command npm run start which runs react-scripts start.

I have a bunch of @typescript-eslint rules that force me to have a clean code before delivering it and deploy it. However, while I'm developing, I may have some unused variables and still want to compile to see if something else works.

Is there a command to force the compilation, while ignoring some or all @typescript-eslint rules?

1 Answers
Related