我想配置android lint以使用lint.xml
样本lint.xml
:
<?xml version="1.0" encoding="UTF-8"?>
<lint>
...
<issue id="all" severity="ignore" >
<ignore path="tests/projecttests/res/layout/button.xml" />
<ignore path="tests/projecttest2s/res/layout/button.xml" />
<ignore path="tests/projecttests2/res/layout/button.xml" />
...
</issue>
</lint>
从官方lint页面使用了样本cmd:
lint --check Accessibility --html /var/www/asc/accessibility_report.html --config lint.xml
但lint.xml
中的文件未按预期被忽略。
我也尝试过:
<ignore path="**/tests/projecttests2/res/layout/button.xml" />
但仍有同样的问题。
如果我在{x}文件中放入tools:ignore="all"
,则lint会忽略此文件。