There is two ways to disable a specific warning in JSHint:
Locally, by inserting a comment in your JavaScript file: /*jshint -W099 */
Globally, by editing your .jshintrc
file:
{
/* ... */
// Disable "Mixed spaces and tabs":
"-W099": false,
// Disable "Missing radix parameter":
"-W065": false,
// Disable "Expected 'X' to have an indentation at Y instead at Z":
"-W015": false,
// Disable "Expected '===' and instead saw '=='":
"-W116": false,
}