Skip to content

Commit

Permalink
Upgrade eslint & commander (out of current ranges) (#525)
Browse files Browse the repository at this point in the history
* Upgrade eslint-config-airbnb-base to ^14.0.0

* Upgrade eslint to ^6.7.2

* Upgrade commander to ^4.0.1
  • Loading branch information
Throne3d authored Dec 14, 2019
1 parent 33d12d7 commit c5ad1a6
Show file tree
Hide file tree
Showing 6 changed files with 287 additions and 215 deletions.
1 change: 1 addition & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
"node": true
},
"rules": {
"arrow-parens": 0,
"global-require": 0,
"comma-dangle": 0,
"func-names": 0,
Expand Down
5 changes: 3 additions & 2 deletions lib/logger.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,12 @@ import { inspect } from 'util';

function formatter(info) {
const stringifiedRest = inspect(
Object.assign({}, info, {
{
...info,
level: undefined,
message: undefined,
splat: undefined
}),
},
{ depth: null }
);

Expand Down
Loading

0 comments on commit c5ad1a6

Please sign in to comment.