Skip to content
This repository has been archived by the owner on Jun 23, 2023. It is now read-only.

Commit

Permalink
Add ESLint config
Browse files Browse the repository at this point in the history
  • Loading branch information
pdehaan committed Jun 26, 2019
1 parent b12decd commit 52a3ad8
Show file tree
Hide file tree
Showing 3 changed files with 1,013 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .eslintrc.js
@@ -0,0 +1,22 @@
module.exports = {
env: {
browser: true,
es6: true,
webextensions: true
},
extends: [
"eslint:recommended"
],
globals: {
fxaCryptoRelier: false
},
parserOptions: {
ecmaVersion: 2018,
sourceType: "module"
},
root: true,
rules: {
"no-unused-vars": ["error", {vars: "all", args: "none", ignoreRestSiblings: true }],
"no-console": "off"
}
};

0 comments on commit 52a3ad8

Please sign in to comment.