Skip to content

Commit

Permalink
Can add globals here, until converted.
Browse files Browse the repository at this point in the history
  • Loading branch information
sberney committed Feb 6, 2020
1 parent d14a94e commit 3feba47
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,17 @@
const libraryGlobals = {
"d3": "readonly"
};

module.exports = {
"env": {
"browser": true,
"es6": true
},
"extends": "eslint-config-i-am-meticulous",
"globals": {
"globals": Object.assign({
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
}, libraryGlobals),
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
Expand Down

0 comments on commit 3feba47

Please sign in to comment.