Reputation: 15700
When I created my firebase project, I enabled eslint. But now I wanted to disable it. is there a way to turn it off without initializing another project?
Upvotes: 2
Views: 1596
Reputation: 15700
I added this comment to the first line of the js file
/* eslint-disable */
And it works for now.
Upvotes: 12