2020-03-19 16:47:51 +03:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
2017-03-16 14:04:39 +03:00
|
|
|
"use strict";
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
rules: {
|
|
|
|
// XXX Bug 1326071 - This should be reduced down - probably to 20 or to
|
2017-03-22 12:43:00 +03:00
|
|
|
// be removed & synced with the mozilla/recommended value.
|
2017-04-24 05:23:18 +03:00
|
|
|
complexity: ["error", 61],
|
2017-03-16 14:04:39 +03:00
|
|
|
},
|
|
|
|
};
|