Bug 1845134 - Part 4: Update existing ui-icons to use the latest source from acorn...
[gecko.git] / toolkit / content / .eslintrc.js
blobb56cafb08b90c98eaec2f119d35ff78807b3dfcb
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   overrides: [
9     {
10       files: "./**/*.?(m)js",
11       excludedFiles: "aboutwebrtc/**",
12       env: {
13         "mozilla/browser-window": true,
14       },
15     },
16   ],
17   plugins: ["mozilla"],
19   rules: {
20     // XXX Bug 1358949 - This should be reduced down - probably to 20 or to
21     // be removed & synced with the mozilla/recommended value.
22     complexity: ["error", 48],
23   },