Skip to content

Commit

Permalink
chore: update jshint config to be more strict
Browse files Browse the repository at this point in the history
  • Loading branch information
vojtajina committed Mar 1, 2013
1 parent 7d3c4e6 commit b09bc1a
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Gruntfile.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,8 @@ module.exports = (grunt) ->

options:
quotmark: 'single'
bitwise: true
indent: 2
camelcase: true
strict: true
trailing: true
Expand All @@ -73,10 +75,13 @@ module.exports = (grunt) ->
immed: true
latedef: true
newcap: true
noempty: true
unused: true
noarg: true
sub: true
undef: true
boss: true
maxdepth: 4
maxlen: 100
globals: {}

grunt.loadTasks 'tasks'
Expand Down

0 comments on commit b09bc1a

Please sign in to comment.