Merge pull request #5 from brendankenny/eslint

add bare Google-style eslint checking
This commit is contained in:
Paul Irish 2016-03-11 15:46:32 -08:00
Родитель 0db4442b37 4fb117277e
Коммит 2b49e353ff
2 изменённых файлов: 7 добавлений и 6 удалений

3
.eslintrc Normal file
Просмотреть файл

@ -0,0 +1,3 @@
{
"extends": "google"
}

Просмотреть файл

@ -7,7 +7,8 @@
"test": "tests"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
"lint": "eslint .",
"test": "npm run lint && mocha test/*.js --timeout 60000"
},
"repository": {
"type": "git",
@ -27,12 +28,9 @@
"walk": "^2.3.9"
},
"devDependencies": {
"babel-eslint": "^4.1.3",
"chai": "^3.4.0",
"eslint": "^1.8.0",
"eslint": "^2.4.0",
"eslint-config-google": "^0.4.0",
"mocha": "^2.3.3"
},
"scripts": {
"test": "mocha test/*.js --timeout 60000"
}
}