mirror of
https://github.com/moparisthebest/k-9
synced 2024-12-25 00:58:50 -05:00
Move lint configuration file into 'config' folder
This commit is contained in:
parent
0a6046cae7
commit
4d61a6407d
@ -4,14 +4,14 @@
|
|||||||
|
|
||||||
<!-- Transifex and Lint disagree on what quantities are necessary -->
|
<!-- Transifex and Lint disagree on what quantities are necessary -->
|
||||||
<issue id="UnusedQuantity" severity="warning">
|
<issue id="UnusedQuantity" severity="warning">
|
||||||
<ignore path="res/values-*/strings.xml" />
|
<ignore path="src/main/res/values-*/strings.xml" />
|
||||||
</issue>
|
</issue>
|
||||||
<issue id="MissingQuantity" severity="warning">
|
<issue id="MissingQuantity" severity="warning">
|
||||||
<ignore path="res/values-*/strings.xml" />
|
<ignore path="src/main/res/values-*/strings.xml" />
|
||||||
</issue>
|
</issue>
|
||||||
|
|
||||||
<!-- Remove this when we have separate Transifex resources for plugins -->
|
<!-- Remove this when we have separate Transifex resources for plugins -->
|
||||||
<issue id="ExtraTranslation" severity="error">
|
<issue id="ExtraTranslation" severity="error">
|
||||||
<ignore path="res/values-zh-rTW/plugin_strings.xml" />
|
<ignore path="src/main/res/values-zh-rTW/plugin_strings.xml" />
|
||||||
</issue>
|
</issue>
|
||||||
</lint>
|
</lint>
|
@ -50,6 +50,7 @@ android {
|
|||||||
// Do not abort build if lint finds errors
|
// Do not abort build if lint finds errors
|
||||||
lintOptions {
|
lintOptions {
|
||||||
abortOnError false
|
abortOnError false
|
||||||
|
lintConfig file("$rootProject.projectDir/config/lint/lint.xml")
|
||||||
}
|
}
|
||||||
|
|
||||||
packagingOptions {
|
packagingOptions {
|
||||||
|
Loading…
Reference in New Issue
Block a user