Skip to content

Commit

Permalink
add more lint rules for tests file
Browse files Browse the repository at this point in the history
  • Loading branch information
stevenschobert committed Sep 6, 2020
1 parent 1f7a85b commit 5d62b79
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
9 changes: 8 additions & 1 deletion test/.jshintrc
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
{
"esversion": 6
"esversion": 6,
"strict": "global",
"node": true,
"browser": true,
"mocha": true,
"undef": true,
"unused": true,
"eqeqeq": true
}
2 changes: 2 additions & 0 deletions test/test.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
"use strict";

const assert = require('assert');
const Instafeed = require('../src/instafeed');

Expand Down

0 comments on commit 5d62b79

Please sign in to comment.