Skip to content

Commit

Permalink
Ignore dist for lint tools.
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidTPate committed Apr 1, 2016
1 parent 7eea395 commit 22652a1
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .eslintignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
node_modules
coverage
benchmark
benchmark
dist
3 changes: 2 additions & 1 deletion .jscsrc
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
"excludeFiles": [
"node_modules/*",
"coverage/*",
"benchmark/*"
"benchmark/*",
"dist/*"
],
"fileExtensions": [
".js"
Expand Down
2 changes: 1 addition & 1 deletion .jsinspectrc
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
"identifiers": true,
"diff": true,
"color": true,
"ignore": "node_modules|coverage|test|benchmark"
"ignore": "node_modules|coverage|test|benchmark|dist"
}
1 change: 1 addition & 0 deletions webpack.config.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
'use strict';
var webpack = require('webpack');
module.exports = {
entry: './index.js',
Expand Down

0 comments on commit 22652a1

Please sign in to comment.