Merge pull request #72 from strongloop/feature/add-jshint-config

Add jshint configuration.
This commit is contained in:
Miroslav Bajtoš 2013-11-21 11:02:54 -08:00
commit 86809fa813
2 changed files with 14 additions and 0 deletions

1
.jshintignore Normal file
View File

@ -0,0 +1 @@
node_modules

13
.jshintrc Normal file
View File

@ -0,0 +1,13 @@
{
"node": true,
"camelcase" : true,
"eqnull" : true,
"indent": 2,
"undef": true,
"quotmark": "single",
"maxlen": 80,
"trailing": true,
"newcap": true,
"nonew": true,
"undef": false
}