Skip to content

Commit

Permalink
Tweak lint
Browse files Browse the repository at this point in the history
  • Loading branch information
TrySound committed Nov 11, 2017
1 parent 46beac3 commit 476548d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions test/.eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
"no-global-assign": 0,
"no-empty": ["error", { "allowEmptyCatch": true }],
"no-shadow": "error",
"prefer-const": "error",
"es5/no-block-scoping": 0,
"es5/no-arrow-functions": 0,
"es5/no-template-literals": 0,
Expand Down
6 changes: 3 additions & 3 deletions test/module_test.js
Original file line number Diff line number Diff line change
Expand Up @@ -258,9 +258,9 @@ describe("control flow", () => {
let didc = false;
let didx = false;

let conda = derivable.atom("a");
let condb = derivable.atom("b");
let condc = derivable.atom("c");
const conda = derivable.atom("a");
const condb = derivable.atom("b");
const condc = derivable.atom("c");

const chooseAPath = switcheroo.switch(
conda,
Expand Down

0 comments on commit 476548d

Please sign in to comment.