Skip to content

Commit 8fc3ff3

Browse files
committed
Update jshint rules. Removed es5:true, added expr:true. Update unused config from grunt-contrib-jshint plugin
1 parent 4685f6f commit 8fc3ff3

2 files changed

Lines changed: 2 additions & 7 deletions

File tree

.jshintrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"boss": true,
1212
"eqnull": true,
1313
"node": true,
14-
"es5": true,
14+
"expr": true,
1515
"predef": [
1616
"describe",
1717
"it",

Gruntfile.js

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,7 @@ module.exports = function(grunt) {
1515
src: ['lib/**/*.js']
1616
},
1717
test: {
18-
src: ['test/**/*.js'],
19-
options: {
20-
es5: true,
21-
expr: true,
22-
globals: {describe: true, it: true, expect: true, define: true, beforeEach: true, afterEach: true}
23-
}
18+
src: ['test/**/*.js']
2419
}
2520
},
2621

0 commit comments

Comments
 (0)