diff options
Diffstat (limited to 'browser/components/newtab/test/.eslintrc.js')
-rw-r--r-- | browser/components/newtab/test/.eslintrc.js | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/browser/components/newtab/test/.eslintrc.js b/browser/components/newtab/test/.eslintrc.js new file mode 100644 index 0000000000..621f781337 --- /dev/null +++ b/browser/components/newtab/test/.eslintrc.js @@ -0,0 +1,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, + }, +}; |