Commit 0eadaf65 authored by Alejandro E. Rendon's avatar Alejandro E. Rendon
Browse files

TravisCI with JSHint

parent aed3ba7f
{
"esversion": 6
}
......@@ -106,7 +106,7 @@ exports.createUserCluster = (uid, username, callback) => {
exports.sshKey = (user, callback) => {
const ssh = new SSH({
host: 'localhost',
port: 4000,
// port: 4000,
user: user.username,
pass: decrypt(user.linux)
});
......
......@@ -5,7 +5,8 @@
"main": "app.js",
"private": true,
"scripts": {
"start": "supervisor -e 'js|node|coffee|ejs|json' ./bin/www"
"start": "supervisor -e 'js|node|coffee|ejs|json' ./bin/www",
"test": "./node_modules/jshint/bin/jshint ./bin/www"
},
"repository": {
"type": "git",
......@@ -53,6 +54,7 @@
"supervisor": "^0.12.0"
},
"devDependencies": {
"eslint": "^3.12.0"
"eslint": "^3.12.0",
"jshint": "^2.9.4"
}
}
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment