From c776a07351bb73186ea9180ba045db39f4f997bb Mon Sep 17 00:00:00 2001 From: Thomas Getgood Date: Thu, 19 Oct 2017 18:47:12 -0400 Subject: [PATCH] fix: standard line ignore 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. --- src/cli.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/cli.js b/src/cli.js index ada73ca..7f22f1a 100755 --- a/src/cli.js +++ b/src/cli.js @@ -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