feat(jshint): add initial config

This initial config mostly documents existing code style
by relaxing multiple options that are turned on by default.
This commit is contained in:
Denis Sokolov 2014-04-01 07:37:53 +03:00
parent f659206042
commit aa0ce6d866

12
.jshintrc Normal file
View file

@ -0,0 +1,12 @@
{
"globals": {
"confirm": false
},
"browser": true,
"node": true,
"asi": true,
"boss": true,
"newcap": false,
}