create-react-app-typescript
create-react-app-typescript copied to clipboard
Disable linter errors in dev mode?
Is it possible to disable linter errors in dev mode and downgrade them to a warning? I comment a line of code to test something and then my import is unused and I'm staring at the error screen. I want to be notified by what I did in a form of an error in console (browser and/or terminal), but it shouldn't get in the way of me seeing the app in dev mode.
Related to #171, #333.
I believe you can use "defaultSeverity": "warning" in tslint.json for now.