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 <issue id="UseSparseArrays" severity="ignore"/> | 9 <issue id="UseSparseArrays" severity="ignore"/> |
10 | 10 |
(...skipping 19 matching lines...) Expand all Loading... |
30 It's in the same directory as this file. --> | 30 It's in the same directory as this file. --> |
31 <issue id="MissingApplicationIcon" severity="ignore"/> | 31 <issue id="MissingApplicationIcon" severity="ignore"/> |
32 <issue id="AllowBackup" severity="ignore"/> | 32 <issue id="AllowBackup" severity="ignore"/> |
33 <issue id="MissingVersion" severity="ignore"/> | 33 <issue id="MissingVersion" severity="ignore"/> |
34 | 34 |
35 <!-- Ignore all lint errors in Chromium code. --> | 35 <!-- Ignore all lint errors in Chromium code. --> |
36 <issue id="all"> | 36 <issue id="all"> |
37 <ignore path="**/org/chromium/**/*.java" /> | 37 <ignore path="**/org/chromium/**/*.java" /> |
38 </issue> | 38 </issue> |
39 </lint> | 39 </lint> |
OLD | NEW |