I want to ignore spellcheck warnings for specific files only in Android Studio. I have tried this out but this seems to be equivalent to SuppressLint instead of SuppressWarning. http://developer.android.com/tools/debugging/improving-w-lint.html
Here's an example of something like what I want to do
<?xml version="1.0" encoding="utf-8"?>
<lint>
<issue id="SpellCheckingInspection" severity="typo">
<ignore path="app/src/main/res/values/local_values.xml" />
<ignore path="app/src/main/res/values/strings.xml" />
<ignore path="app/src/main/AndroidManifest.xml" />
</issue>
</lint>
Any ideas?