Existing answers about disabling ESLint answer the question "How can I disable ESLint in one file, a pattern of files, or a directory of files?" Is there an easy way to just stop a project from checking ESLint at all?
My goal here is to run a Cypress test with a debugger; command and possibly many other syntax errors due to temporary commenting out. I want to be able to test partially complete code and then toggle type checking back on. Bonus points if the solution stops TypeScript checking as well.
Things I tried that didn't work:
- adding
/* eslint-disable */tocypress/support/e2e.js - launching
cypress openwithDISABLE_ESLINT_PLUGIN=true
My app is using create-react-app.