Skip to content

Commit

Permalink
fix: standard line ignore
Browse files Browse the repository at this point in the history
If there's a good reason not to do this I'll change it, but as far as I
know it's perfectly fine. Maybe a little too perly.
  • Loading branch information
tgetgood authored and RichardLitt committed Oct 20, 2017
1 parent bad210a commit c776a07
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,10 @@ const cli = meow([`

const token = cli.flags.t || process.env.GITHUB_TOKEN

/* eslint-disable no-mixed-operators */
const after = cli.flags.a && new Date(cli.flags.a) || new Date(0)
const before = cli.flags.b && new Date(cli.flags.b) || new Date()
/* eslint-enable no-mixed-operators */

const debugMode = cli.flags.debug

Expand Down

0 comments on commit c776a07

Please sign in to comment.