Skip to content

Commit fc3f645

Browse files
committedNov 7, 2015
update ESLint and add a lint script to the package.json
add npm-debug.log to the list of ignored files
1 parent aac346a commit fc3f645

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed
 

‎.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ test/triage/*.js
1717
/inspections
1818
bin/mongoose.min.js
1919
coverage
20+
npm-debug.log
2021

2122
# Visual Studio
2223
# =========

‎package.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
"bluebird": "2.9.34",
4040
"co": "3.1.0",
4141
"dox": "0.3.1",
42-
"eslint": "1.7.3",
42+
"eslint": "1.9.0",
4343
"highlight.js": "7.0.1",
4444
"istanbul": "^0.3.13",
4545
"jade": "0.26.3",
@@ -67,7 +67,8 @@
6767
"scripts": {
6868
"install-browser": "npm install `node format_deps.js`",
6969
"test": "mocha --async-only test/*.test.js test/**/*.test.js",
70-
"test-cov": "istanbul cover _mocha --async-only test/*.test.js"
70+
"test-cov": "istanbul cover _mocha --async-only test/*.test.js",
71+
"lint": "eslint . --quiet"
7172
},
7273
"main": "./index.js",
7374
"engines": {

0 commit comments

Comments
 (0)
Please sign in to comment.