Skip to content

Commit

Permalink
chore: ignore node_modules when linting
Browse files Browse the repository at this point in the history
  • Loading branch information
isner authored and marcysutton committed Aug 31, 2017
1 parent 5a77c2f commit 9402a7c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,8 @@ module.exports = function (grunt) {
},
src: [
'lib/**/*.js', 'test/**/*.js', 'build/tasks/**/*.js',
'doc/**/*.js', '!doc/examples/jest+react/*.js', 'Gruntfile.js'
'doc/**/*.js', '!doc/examples/jest+react/*.js', 'Gruntfile.js',
'!**/node_modules/**/*.js'
]
}
}
Expand Down

0 comments on commit 9402a7c

Please sign in to comment.