gecko-dev/testing/marionette/marionette.eslintrc.js
Dave Townsend 6365baa692 Bug 1315402: Make toolkit/mozapps/update pass no-undef. r=jaws
This is mostly using the import-globals-from rule to pull in globals when
the subscript loader is used. For a couple of files I've turned off no-undef
altogether, these are files that are loaded by the subscript loader and depend
on globals from the parent.

MozReview-Commit-ID: 2ZzgpCQTTuu

--HG--
extra : rebase_source : 6d2f20111ae27858811bd19db794dc9fb29183d0
2016-11-04 17:03:01 -07:00

9 lines
180 B
JavaScript

// Parent config file for all marionette files.
module.exports = {
// All globals made available in the test environment.
"globals": {
"ok": false,
"is": false,
}
};