• Home
  • Raw
  • Download

Lines Matching +full:ignore +full:- +full:errors

8 [Android Lint]: https://googlesamples.github.io/android-custom-lint-rules/book.md.html
10 [list of checks]: https://googlesamples.github.io/android-custom-lint-rules/checks/index.md.html
19 - `//chrome/android:monochrome_public_bundle`
20 - `//android_webview/support_library/boundary_interfaces:boundary_interface_example_apk`
21 - `//remoting/android:remoting_apk`
37 that tells lint to ignore the annotated element. It can be used on classes,
43 **lint** what to ignore. It can be a single `String`:
66 For resource xml files you can use `tools:ignore`:
69 <?xml version="1.0" encoding="utf-8"?>
71 <!-- TODO(crbug/###): remove tools:ignore once these colors are used -->
72 <color name="hi" tools:ignore="NewApi,UnusedResources">@color/unused</color>
78 ### Suppress it in a `lint-suppressions.xml` file
80 **lint** can be given a per-target XML configuration file containing warnings or
81 errors that should be ignored. Each target defines its own configuration file
87 ignoring warnings only for this target. To permanently ignore a warning for all
93 Feel free to suppress those in lint-suppressions.xml files since it is not
95 to list out every language for every violation in lint-baseline.xml files.
100 <?xml version="1.0" encoding="utf-8" ?>
102 <!-- Chrome is a system app. -->
103 <issue id="ProtectedPermissions" severity="ignore"/>
105 <!-- 1 raw resources are accessed by URL in various places. -->
106 <ignore regexp="gen/remoting/android/.*/res/raw/credits.*"/>
107 <!-- TODO(crbug.com/###): Remove the following line. -->
108 <ignore regexp="The resource `R.string.soon_to_be_used` appears to be unused"/>
113 ## What are `lint-baseline.xml` files for?
115 Baseline files are to help us introduce new lint warnings and errors without
116 blocking on fixing all our existing code that violate these new errors. Since
118 One of the approaches above should be used instead. Eventually all the errors in