summaryrefslogtreecommitdiffstats
path: root/browser/components/newtab/test/.eslintrc.js
blob: 621f781337aac70ddde622cc5d016f17ef69ffb2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* eslint-disable import/no-commonjs */

module.exports = {
  env: {
    mocha: true,
  },
  globals: {
    assert: true,
    chai: true,
    sinon: true,
  },
  rules: {
    "func-name-matching": 0,
    "import/no-commonjs": 2,
    "lines-between-class-members": 0,
    "react/jsx-no-bind": 0,
    "require-await": 0,
  },
};