-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlint.xml
25 lines (22 loc) · 1.03 KB
/
lint.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?xml version="1.0" encoding="UTF-8"?>
<lint>
<!-- Ignore Package. -->
<issue id="all">
<ignore path="*/com/ihsanbal/logging/*" />
</issue>
<!-- We need a new release with Timber. -->
<issue id="ObsoleteLintCustomCheck">
<ignore regexp="timber" />
</issue>
<!-- Additionally, we run into a NPE. The only workaround is to ignore the checks. https://github.com/JakeWharton/timber/issues/334#issuecomment-521625225 -->
<issue id="LogNotTimber" severity="ignore" />
<issue id="StringFormatInTimber" severity="ignore" />
<issue id="ThrowableNotAtBeginning" severity="ignore" />
<issue id="BinaryOperationInTimber" severity="ignore" />
<issue id="TimberArgCount" severity="ignore" />
<issue id="TimberArgTypes" severity="ignore" />
<issue id="TimberTagLength" severity="ignore" />
<issue id="TimberExceptionLogging" severity="ignore" />
<!-- We can't always go and optimize those paths and we still prefer SVGs over PNGs. -->
<issue id="VectorPath" severity="ignore" />
</lint>