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

android_webview / tools / system_webview_shell / lint-suppressions.xml [blame]

<?xml version="1.0" encoding="utf-8" ?>
<!--
Please refer to the lint doc for how to use this file and what should go in it:
https://chromium.googlesource.com/chromium/src/+/main/build/android/docs/lint.md
-->
<lint>
  <!-- The goal is to catch webview-specific lint violations, so ignore
    directories already covered by Chrome's lint check.
  -->
  <issue id="all">
    <ignore regexp="../../../base/"/>
    <ignore regexp="../../../components/"/>
    <ignore regexp="../../../content/"/>
    <ignore regexp="../../../net/"/>
  </issue>
  <issue id="AcceptsUserCertificates" severity="ignore"/>
  <issue id="ForegroundServiceType" severity="ignore" />
  <issue id="InsecureBaseConfiguration" severity="ignore"/>
  <issue id="ScopedStorage" severity="ignore"/>
  <issue id="SetJavaScriptEnabled" severity="ignore"/>
  <!-- This check doesn't tend to catch new violations except when we increase
  our minSdkVersion. We prefer to clean up these obsolete checks
  incrementally after increasing minSdkVersion. -->
  <issue id="ObsoleteSdkInt" severity="ignore"/>
</lint>