Skip to content
This repository was archived by the owner on Jul 25, 2024. It is now read-only.

Commit 273ed60

Browse files
Sam1301timabbott
authored andcommitted
Raise lint errors.
Change severity to error for unused namespaces, unused attributes, use of deprecated resources, typos in string declaration, hard-coded sdcard path in strings and not using newer versions of existing dependencies. These cover some common mistakes in the prs submitted and will help automate finding such errors thus making review process faster.
1 parent 947cf8a commit 273ed60

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

app/lint.xml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,10 @@
1313
<ignore path="**/ic_person_24dp.png"/>
1414
<ignore path="**/ic_search_24dp.png"/>
1515
</issue>
16-
16+
<issue id="UnusedNamespace" severity="error"/>
17+
<issue id="UnusedAttribute" severity="error"/>
18+
<issue id="Deprecated" severity="error"/>
19+
<issue id="Typos" severity="error"/>
20+
<issue id="SdCardPath" severity="error"/>
21+
<issue id="NewerVersionAvailable" severity="error"/>
1722
</lint>

0 commit comments

Comments
 (0)