1<?xml version="1.0" encoding="UTF-8"?> 2<!DOCTYPE module PUBLIC "-//Puppy Crawl//DTD Check Configuration 1.3//EN" "http://www.puppycrawl.com/dtds/configuration_1_3.dtd" [ 3 <!ENTITY defaultJavadocChecks SYSTEM "../../../prebuilts/checkstyle/default-javadoc-checks.xml"> 4 <!ENTITY defaultTreewalkerChecks SYSTEM "../../../prebuilts/checkstyle/default-treewalker-checks.xml"> 5 <!ENTITY defaultModuleChecks SYSTEM "../../../prebuilts/checkstyle/default-module-checks.xml"> 6]> 7 8<module name="Checker"> 9 &defaultModuleChecks; 10 <module name="RegexpHeader"> 11 <property name="severity" value="error"/> 12 <message key="header.mismatch" 13 value="Google Copyright header seems to be incorrect. Expected ''{0}'' on this line."/> 14 <property name="header" value="^/\*\n \* Copyright \(C\) [0-9]{4} Google LLC\.\n \*\n \* Licensed under the Apache License, Version 2\.0 \(the \"License\"\);\n \* you may not use this file except in compliance with the License.\n \* You may obtain a copy of the License at\n \*\n \* http:\/\/www\.apache\.org\/licenses\/LICENSE-2\.0\n \*\n \* Unless required by applicable law or agreed to in writing, software\n \* distributed under the License is distributed on an "AS IS" BASIS,\n \* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied\.\n \* See the License for the specific language governing permissions and\n \* limitations under the License\.\n \*\/" /> 15 </module> 16 <module name="TreeWalker"> 17 &defaultJavadocChecks; 18 &defaultTreewalkerChecks; 19 </module> 20</module> 21