Suppress "mixed spaces and tabs" warning in JSHint / JSLint or alternative service?

javascript, jshint, jslint

Solution

/*jshint smarttabs:true */

See `smarttabs`, under "Relaxing Options." http://www.jshint.com/docs/options/

This option suppresses warnings about mixed tabs and spaces when the latter are used for alignmnent only. The technique is called SmartTabs.

Problem

JSHint and JSLint are awesome tools. However, the "mixed spaces and tabs" warning dominates the report. Is there a way to suppress these warnings, or is there a similar service that allows white space warnings to get suppressed?

Original source