我想忽略Android Studio中特定文件的拼写检查警告。我试过这个,但这似乎相当于SuppressLint而不是SuppressWarning。 http://developer.android.com/tools/debugging/improving-w-lint.html
以下是我想要做的事情的例子
<?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>
有什么想法吗?