mirror of
https://github.com/roytam1/basilisk55.git
synced 2026-07-20 22:29:28 +00:00
18 lines
408 B
JavaScript
18 lines
408 B
JavaScript
"use strict";
|
|
|
|
module.exports = {
|
|
// Extend from the shared list of defined globals for mochitests.
|
|
"extends": "../../../../.eslintrc.mochitests.js",
|
|
"globals": {
|
|
"addTab": true,
|
|
"censusState": true,
|
|
"refreshTab": true,
|
|
"removeTab": true,
|
|
"waitForTime": true,
|
|
"waitUntilState": true
|
|
},
|
|
"rules": {
|
|
"no-unused-vars": ["error", { "vars": "local", "args": "none" }],
|
|
}
|
|
};
|