Skip to content

Commit

Permalink
Convert inpage provider to Class (#17)
Browse files Browse the repository at this point in the history
* convert to class

* move eslint-config to dev deps

* 4.1.0
  • Loading branch information
rekmarks authored Feb 8, 2020
1 parent 228ff2a commit 51530c2
Show file tree
Hide file tree
Showing 9 changed files with 439 additions and 527 deletions.
1 change: 0 additions & 1 deletion .eslintignore

This file was deleted.

146 changes: 0 additions & 146 deletions .eslintrc

This file was deleted.

30 changes: 30 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
module.exports = {
env: {
browser: true,
commonjs: true,
es6: true,
},
extends: [
'@metamask/eslint-config',
'@metamask/eslint-config/config/nodejs',
],
plugins: [
'json',
],
globals: {
document: false,
navigator: false,
web3: true,
window: false,
$: false,
QUnit: false,
},
parserOptions: {
ecmaVersion: 2018,
},
rules: {},
ignorePatterns: [
'!.eslintrc.js',
'node_modules/',
],
}
Loading

0 comments on commit 51530c2

Please sign in to comment.