ee0jmt
ee0jmt

Reputation: 335

ESLint disable max-len rule for define()

I am using requirejs and I have some files which have a define statement which exceeds the max-len rule in my eslint config.

The rule is set to 180, I don't really want to increase this just to avoid problems on the define line.

What is the best way to handle this? Is there a way to ignore define lines in the eslint config?

Thanks!

Upvotes: 0

Views: 337

Answers (1)

ee0jmt
ee0jmt

Reputation: 335

I found a way to do this.

In the eslint config, in the max-len rule I added the ignorePattern option and ignored lines starting with define.

Would be interested if anyone has an alternative solution.

Upvotes: 0

Related Questions