gecko-dev/toolkit/mozapps/extensions/.eslintrc.js

25 lines
556 B
JavaScript

"use strict";
module.exports = {
"rules": {
// Warn about cyclomatic complexity in functions.
// XXX Bug 1326071 - This should be reduced down - probably to 20 or to
// be removed & synced with the mozilla/recommended value.
"complexity": ["error", {"max": 68}],
"no-unused-vars": ["error", {
"args": "none",
"vars": "all",
}],
},
"overrides": [{
"files": "test/xpcshell/head*.js",
"rules": {
"no-unused-vars": ["error", {
"args": "none",
"vars": "local",
}],
},
}],
};