h5ai/jshint.json

21 lines
277 B
JSON
Raw Normal View History

2012-05-11 12:54:52 -04:00
{
// Enforcing Options
"bitwise": true,
"curly": true,
"eqeqeq": true,
"forin": true,
"latedef": true,
"newcap": true,
"noempty": true,
"plusplus": true,
"trailing": true,
"undef": true,
// Environments
"browser": true,
// Globals
"predef": [
"modulejs"
2012-05-11 12:54:52 -04:00
]
}