forked from mirrors/gecko-dev
MozReview-Commit-ID: Jy4apKnmWcV --HG-- rename : toolkit/.eslintrc.js => tools/lint/eslint/eslint-plugin-mozilla/lib/configs/recommended.js extra : rebase_source : ae0c740c1c2a9cf620c1ac34024622ade12e6fd4
9 lines
233 B
JavaScript
9 lines
233 B
JavaScript
"use strict";
|
|
|
|
module.exports = {
|
|
rules: {
|
|
// XXX Bug 1326071 - This should be reduced down - probably to 20 or to
|
|
// be removed & synced with the mozilla/recommended value.
|
|
"complexity": ["error", {"max": 69}],
|
|
}
|
|
};
|