gecko/toolkit/mozapps/extensions/.eslintrc
Dave Townsend 696bd05e96 Bug 1245916: Turn on no-undef in toolkit/mozapps/extensions. r=rhelmer
Mostly just declaring globals that Cu.imports defines but there are some actual
bugs here that have been fixed as well as one test that just never ran because
of a hidden exception.

MozReview-Commit-ID: J6uIpYp8ANx
2016-02-03 22:48:48 -08:00

7 lines
77 B
Plaintext

{
"rules": {
// No using undeclared variables
"no-undef": 2,
}
}