1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!--
- ~ Password Management Servlets (PWM)
- ~ http://www.pwm-project.org
- ~
- ~ Copyright (c) 2006-2009 Novell, Inc.
- ~ Copyright (c) 2009-2021 The PWM Project
- ~
- ~ Licensed under the Apache License, Version 2.0 (the "License");
- ~ you may not use this file except in compliance with the License.
- ~ You may obtain a copy of the License at
- ~
- ~ http://www.apache.org/licenses/LICENSE-2.0
- ~
- ~ Unless required by applicable law or agreed to in writing, software
- ~ distributed under the License is distributed on an "AS IS" BASIS,
- ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- ~ See the License for the specific language governing permissions and
- ~ limitations under the License.
- -->
- <!DOCTYPE module PUBLIC
- "-//Puppy Crawl//DTD Check Configuration 1.2//EN"
- "http://www.puppycrawl.com/dtds/configuration_1_2.dtd">
- <!--
- PWM Checkstyle definition
- -->
- <module name="Checker">
- <module name="SuppressionFilter">
- <property name="file" value="${basedir}/build/checkstyle-suppression.xml" />
- </module>
- <module name="Header">
- <property name="headerFile" value="${basedir}/build/license-header-jsp.txt"/>
- <property name="fileExtensions" value="jsp"/>
- </module>
- <module name="Header">
- <property name="headerFile" value="${basedir}/build/license-header-java.txt"/>
- <property name="fileExtensions" value="java"/>
- </module>
- <module name="Header">
- <property name="headerFile" value="${basedir}/build/license-header-xml.txt"/>
- <property name="fileExtensions" value="xml,svg,xsd,tld"/>
- </module>
- <module name="Header">
- <property name="headerFile" value="${basedir}/build/license-header-properties.txt"/>
- <property name="fileExtensions" value="properties"/>
- </module>
- <module name="Header">
- <property name="headerFile" value="${basedir}/build/license-header-js.txt"/>
- <property name="fileExtensions" value="js,ts"/>
- </module>
- <module name="Header">
- <property name="headerFile" value="${basedir}/build/license-header-css.txt"/>
- <property name="fileExtensions" value="css,scss,sass"/>
- </module>
- <module name="Header">
- <property name="headerFile" value="${basedir}/build/license-header-html.txt"/>
- <property name="fileExtensions" value="html"/>
- <property name="ignoreLines" value="1"/>
- </module>
- </module>
|