gecko-dev/browser/.eslintrc.js
Carsten "Tomcat" Book 9af9b1c794 Bug 1348801 - bump eslint to fix orange a=tomcat r=Standard8
--HG--
extra : rebase_source : 98fd635ec9ac0e64142ea6440d58dbb43fa8963a
2017-03-22 15:52:20 +01:00

16 lines
316 B
JavaScript

"use strict";
module.exports = {
"extends": [
"plugin:mozilla/recommended"
],
"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": 42}],
"no-shadow": "error",
}
};