When using "unsafe characters" (e.g. umlauts) in comments I get the following error:
This character may get silently deleted by one or more browsers.
Is there any way to disable this check for comments (globally)?
I fixed it in one specific file by adding /* jshint -W100 */
in the top of the file.
To ignore it globally, I guess you have to add it somewhere in .jshintrc
(though I don't know where).