OLD | NEW |
---|---|
1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
2 <lint> | 2 <lint> |
3 <!-- These lint settings is for the Android linter that gets run by | 3 <!-- These lint settings is for the Android linter that gets run by |
4 lint_action.gypi on compile of WebRTC java code. All WebRTC java code | 4 lint_action.gypi on compile of WebRTC java code. All WebRTC java code |
5 should lint cleanly for the issues below. --> | 5 should lint cleanly for the issues below. --> |
6 <!-- TODO(phoglund): make work with suppress.py or remove printout referring | 6 <!-- TODO(phoglund): make work with suppress.py or remove printout referring |
7 to suppress.py. --> | 7 to suppress.py. --> |
8 | 8 |
9 <!-- TODO(crbug.com/739746): Remove once platform-tools is updated. --> | |
10 <issue id="NewApi" severity="ignore"/> | |
11 <issue id="InlinedApi" severity="ignore"/> | |
sakal
2017/07/21 09:27:04
This is not needed if we land this CL: https://cod
| |
12 | |
9 <issue id="UseSparseArrays" severity="ignore"/> | 13 <issue id="UseSparseArrays" severity="ignore"/> |
10 | 14 |
11 <issue id="LongLogTag" severity="ignore"/> | 15 <issue id="LongLogTag" severity="ignore"/> |
12 <issue id="Registered" severity="ignore"/> | 16 <issue id="Registered" severity="ignore"/> |
13 <issue id="MissingPermission" severity="ignore"/> | 17 <issue id="MissingPermission" severity="ignore"/> |
14 <issue id="ApplySharedPref" severity="ignore"/> | 18 <issue id="ApplySharedPref" severity="ignore"/> |
15 <!-- TODO(sakal): Remove once the lint tool is updated. --> | 19 <!-- TODO(sakal): Remove once the lint tool is updated. --> |
16 <issue id="CommitPrefEdits" severity="ignore"/> | 20 <issue id="CommitPrefEdits" severity="ignore"/> |
17 <issue id="UnusedResources" severity="ignore"/> | 21 <issue id="UnusedResources" severity="ignore"/> |
18 <issue id="IconColors" severity="ignore"/> | 22 <issue id="IconColors" severity="ignore"/> |
(...skipping 11 matching lines...) Expand all Loading... | |
30 It's in the same directory as this file. --> | 34 It's in the same directory as this file. --> |
31 <issue id="MissingApplicationIcon" severity="ignore"/> | 35 <issue id="MissingApplicationIcon" severity="ignore"/> |
32 <issue id="AllowBackup" severity="ignore"/> | 36 <issue id="AllowBackup" severity="ignore"/> |
33 <issue id="MissingVersion" severity="ignore"/> | 37 <issue id="MissingVersion" severity="ignore"/> |
34 | 38 |
35 <!-- Ignore all lint errors in Chromium code. --> | 39 <!-- Ignore all lint errors in Chromium code. --> |
36 <issue id="all"> | 40 <issue id="all"> |
37 <ignore path="**/org/chromium/**/*.java" /> | 41 <ignore path="**/org/chromium/**/*.java" /> |
38 </issue> | 42 </issue> |
39 </lint> | 43 </lint> |
OLD | NEW |