xref: /aosp_15_r20/external/perfmark/buildscripts/checkstyle.xml (revision 27e8546d0ef5f99cf83d5252272c7dd38d18d29a)
1<?xml version="1.0"?>
2<!DOCTYPE module PUBLIC
3          "-//Checkstyle//DTD Checkstyle Configuration 1.3//EN"
4          "https://checkstyle.org/dtds/configuration_1_3.dtd">
5
6<!--
7    Checkstyle configuration that checks the Google coding conventions from Google Java Style
8    that can be found at https://google.github.io/styleguide/javaguide.html.
9
10    Checkstyle is very configurable. Be sure to read the documentation at
11    http://checkstyle.sf.net (or in your downloaded distribution).
12
13    To completely disable a check, just comment it out or delete it from the file.
14
15    Authors: Max Vetrenko, Ruslan Diachenko, Roman Ivanov.
16 -->
17
18<module name = "Checker">
19    <property name="charset" value="UTF-8"/>
20
21    <property name="severity" value="error"/>
22
23    <module name="Header">
24      <property name="headerFile" value="${config_loc}/checkstyle.license"/>
25      <property name="ignoreLines" value="2"/>
26      <property name="fileExtensions" value="java"/>
27    </module>
28</module>
29