fune/devtools/client/memory/test/unit/.eslintrc.js
2016-12-21 15:21:24 +01:00

12 lines
276 B
JavaScript

"use strict";
module.exports = {
// Extend from the shared list of defined globals for mochitests.
"extends": "../../../../.eslintrc.xpcshell.js",
"rules": {
"no-unused-vars": ["error", {
"vars": "local",
"varsIgnorePattern": "^run_test$"
}]
}
};