Abraham
Abraham

Reputation: 15700

How to turn off eslint for node.js firebase functions project

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

Answers (1)

Abraham
Abraham

Reputation: 15700

I added this comment to the first line of the js file

/* eslint-disable */ 

And it works for now.

Upvotes: 12

Related Questions