8
我想忽略Android Studio中特定文件的拼写检查警告。我已经尝试过了,但是这似乎等同于SuppressLint而不是SuppressWarning。 http://developer.android.com/tools/debugging/improving-w-lint.html在Android Studio中忽略特定文件的拼写警告
这里的东西像什么,我想要做的
<?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>
任何想法的例子吗?你想在文件禁用
已经有一个问题在这里:https://stackoverflow.com/a/31947638/905686 – user905686