4chan-x/src/meta/jshint.json
2016-04-09 18:21:54 -07:00

27 lines
539 B
JSON

{
"undef": true,
"unused": true,
"eqnull": true,
"expr": true,
"shadow": true,
"sub": true,
"scripturl": true,
"browser": true,
"devel": true,
"nonstandard": true,
"-W018": true,
"-W084": true,
"-W083": true,
"-W093": true,
"globals": {
"MediaError": true,
"Set": true,
"GM_info": true,
"cloneInto": true,
"unsafeWindow": true,
"chrome": true<%=
grunt.file.readJSON('package.json').meta.grants.map(x => `,\n "${x}": true`).join('')
%>
}
}