1

Followed directions in Using JSLint in Notepad++. Using JavaScript Lint (not JSLint).

I am using jQuery library. How do you ignore the 300 jQuery warnings?

Community
  • 1
  • 1
B Seven
  • 44,484
  • 66
  • 240
  • 385

1 Answers1

1

In your conf.txt add

/*global $, jQuery*/

JaredMcAteer
  • 21,688
  • 5
  • 49
  • 65
  • Do you mean the jsl.default.conf file? I added it to the end, but I got the error: C:\Program Files\JavascriptLint\jsl.default.conf(131): configuration error: unrecognized line format Looking through the conf file it seems like the syntax is wrong... – B Seven Apr 29 '11 at 04:05
  • Maybe I was just looking at the link you posted and it seemed the conf.txt in the accepted answer was the place. – JaredMcAteer Apr 29 '11 at 14:28