forked from PixelOS-AOSP/android_frameworks_base
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcheckstyle_suppressions.xml
More file actions
15 lines (12 loc) · 870 Bytes
/
checkstyle_suppressions.xml
File metadata and controls
15 lines (12 loc) · 870 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE suppressions PUBLIC "-//Puppy Crawl//DTD Suppressions 1.1//EN" "http://www.puppycrawl.com/dtds/suppressions_1_1.dtd">
<suppressions>
<!-- Let google-java-format handle the ImportOrder. -->
<suppress files="services/core/java/com/android/server/adb/*,tests/AppJankTest" checks="ImportOrder" />
<!-- Let google-java-format handle the indentation. -->
<suppress files="services/core/java/com/android/server/adb/*,tests/AppJankTest" checks="Indentation" />
<!-- Let google-java-format handle the line length. -->
<suppress files="services/core/java/com/android/server/adb/*,tests/AppJankTest" checks="LineLength" />
<!-- Let google-java-format handle the { placement. -->
<suppress files="services/core/java/com/android/server/adb/*,tests/AppJankTest" checks="LeftCurly" />
</suppressions>