lint-suppressions.xml 1.2 KB

12345678910111213141516171819202122232425262728293031
  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <lint>
  3. <!-- Ignore all lint errors in chrome code. -->
  4. <issue id="all">
  5. <ignore regexp="../../base/"/>
  6. <ignore regexp="../../net/"/>
  7. <ignore regexp="../../ui/"/>
  8. </issue>
  9. <!-- The following remoting-specific suppressions have been migrated from
  10. //build/android/lint/suppressions.xml -->
  11. <issue id="ButtonStyle" severity="Error">
  12. <ignore regexp="remoting/android/host/res/layout/main.xml"/>
  13. </issue>
  14. <issue id="HandlerLeak">
  15. <ignore regexp="remoting/android/java/src/org/chromium/chromoting/TapGestureDetector.java"/>
  16. </issue>
  17. <issue id="HardcodedText" severity="Error">
  18. <ignore regexp="remoting/android/host/res/layout/main.xml"/>
  19. </issue>
  20. <issue id="MissingSuperCall" severity="Error">
  21. <!-- TODO(wnwen): File bug to fix -->
  22. <ignore regexp="remoting/android/java/src/org/chromium/chromoting/Chromoting.java"/>
  23. </issue>
  24. <issue id="MissingTranslation">
  25. <ignore regexp="remoting/resources/strings_java.resources.zip"/>
  26. </issue>
  27. <issue id="UnusedResources">
  28. <!-- 1: raw resources are accessed by URL in various places -->
  29. <ignore regexp="gen/remoting/android/.*/res/raw/credits.*"/>
  30. </issue>
  31. </lint>