Bug 1798651 Part 1: Make SynchronousTask accept a wait interval, and return result...
[gecko.git] / toolkit / content / .eslintrc.js
blobea5a72ce6723f72f743aeb28635af6ca03a386d5
1 /* This Source Code Form is subject to the terms of the Mozilla Public
2  * License, v. 2.0. If a copy of the MPL was not distributed with this
3  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
5 "use strict";
7 module.exports = {
8   env: {
9     "mozilla/browser-window": true,
10   },
12   plugins: ["mozilla"],
14   rules: {
15     // XXX Bug 1358949 - This should be reduced down - probably to 20 or to
16     // be removed & synced with the mozilla/recommended value.
17     complexity: ["error", 48],
18   },