Skip to content

Commit

Permalink
updated dependencies and modified compilation to work with new versions
Browse files Browse the repository at this point in the history
  • Loading branch information
jfurfaro committed Oct 17, 2021
1 parent e5adc64 commit 87867aa
Show file tree
Hide file tree
Showing 12 changed files with 12,775 additions and 9,685 deletions.
12 changes: 3 additions & 9 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,6 @@
module.exports = {
parser: 'babel-eslint',
parserOptions: {
ecmaVersion: 8,
sourceType: 'module',
ecmaFeatures: {
impliedStrict: true,
experimentalObjectRestSpread: true
}
sourceType: 'module'
},
globals: {
API_HOST: false,
Expand All @@ -19,7 +13,7 @@ module.exports = {
env: {
browser: true,
node: true,
es6: true
es2021: true
},
rules: {
'comma-dangle': 2,
Expand All @@ -39,6 +33,6 @@ module.exports = {
semi: [ 2, 'always' ],
'space-before-function-paren': [ 2, { anonymous: 'always', named: 'never' } ],
'space-infix-ops': 0,
yoda: 2,
yoda: 2
}
};
Loading

0 comments on commit 87867aa

Please sign in to comment.