xref: /aosp_15_r20/external/apache-commons-bcel/src/conf/checkstyle-suppressions.xml (revision 0c56280ab0842982c46a149f7b9eaa497e31e292)
1*0c56280aSSorin Basca<?xml version="1.0"?>
2*0c56280aSSorin Basca<!--
3*0c56280aSSorin BascaLicensed to the Apache Software Foundation (ASF) under one or more
4*0c56280aSSorin Bascacontributor license agreements.  See the NOTICE file distributed with
5*0c56280aSSorin Bascathis work for additional information regarding copyright ownership.
6*0c56280aSSorin BascaThe ASF licenses this file to You under the Apache License, Version 2.0
7*0c56280aSSorin Basca(the "License"); you may not use this file except in compliance with
8*0c56280aSSorin Bascathe License.  You may obtain a copy of the License at
9*0c56280aSSorin Basca
10*0c56280aSSorin Basca     http://www.apache.org/licenses/LICENSE-2.0
11*0c56280aSSorin Basca
12*0c56280aSSorin BascaUnless required by applicable law or agreed to in writing, software
13*0c56280aSSorin Bascadistributed under the License is distributed on an "AS IS" BASIS,
14*0c56280aSSorin BascaWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15*0c56280aSSorin BascaSee the License for the specific language governing permissions and
16*0c56280aSSorin Bascalimitations under the License.
17*0c56280aSSorin Basca-->
18*0c56280aSSorin Basca
19*0c56280aSSorin Basca<!DOCTYPE suppressions PUBLIC
20*0c56280aSSorin Basca    "-//Puppy Crawl//DTD Suppressions 1.1//EN"
21*0c56280aSSorin Basca    "http://www.puppycrawl.com/dtds/suppressions_1_1.dtd">
22*0c56280aSSorin Basca<!-- SEE: http://checkstyle.sourceforge.net/config.html#Examples -->
23*0c56280aSSorin Basca<suppressions>
24*0c56280aSSorin Basca    <suppress checks="LineLength"  files="InstructionFinder.java"/> <!-- TODO later -->
25*0c56280aSSorin Basca
26*0c56280aSSorin Basca    <suppress checks="MagicNumber" files="VerifierAppFrame.java"/> <!-- Swing files use lots of numbers -->
27*0c56280aSSorin Basca    <suppress checks="MagicNumber" files="VerifyDialog.java"/> <!-- Swing files use lots of numbers -->
28*0c56280aSSorin Basca    <suppress checks="MagicNumber" files="src[/\\]test[/\\]"/> <!-- test files need numbers -->
29*0c56280aSSorin Basca
30*0c56280aSSorin Basca     <!-- Maven generated code -->
31*0c56280aSSorin Basca    <suppress checks=".*"          files="[/\\]target[/\\]"/>
32*0c56280aSSorin Basca</suppressions>
33