Backed out changeset aa5fc411278d (bug 1876522) for causing failures on browser_tab_t...
[gecko.git] / browser / components / pocket / .eslintrc.js
blob0a09319f0ce370a707418c31937ab88929d4b4a3
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 module.exports = {
6   plugins: [
7     "react", // require("eslint-plugin-react")
8   ],
9   settings: {
10     react: {
11       version: "17.0.2",
12     },
13   },
14   rules: {
15     "react/jsx-uses-react": 2,
16     "react/jsx-uses-vars": 2,
17   },