blob: 3375113757cb5da0d3a65364cde8a49d7f0c65e1 [file] [log] [blame]
Ray Milkey70d91cc2014-03-18 15:22:27 -07001<?xml version="1.0" encoding="UTF-8"?>
Ray Milkey70d91cc2014-03-18 15:22:27 -07002<!DOCTYPE suppressions PUBLIC "-//Puppy Crawl//DTD Suppressions 1.1//EN" "http://www.puppycrawl.com/dtds/suppressions_1_1.dtd">
3
Ray Milkey70d91cc2014-03-18 15:22:27 -07004<suppressions>
Yuta HIGUCHI057f7bc2014-04-16 17:37:41 -07005 <!--
6 Note: Exclusion definition exists in multiple places.
7 - In file ${findbugs.excludeFilterFile} defined at top of pom.xml
8 - In file conf/checkstyle/onos_suppressions.xml (this file)
9 - maven-pmd-plugin configuration in pom.xml
10 (under build and reporting)
11 -->
12
Ray Milkey70d91cc2014-03-18 15:22:27 -070013 <!-- Suppressions for ONOS -->
Ray Milkey70d91cc2014-03-18 15:22:27 -070014 <suppress files="edu.stanford.ramcloud.*" checks="[_a-zA-Z0-9]*"/>
15 <suppress files="net.floodlightcontroller.*" checks="[_a-zA-Z0-9]*"/>
Ray Milkey7f1567c2014-04-08 13:53:32 -070016 <suppress files="net.onrc.onos.core.datastore.serializers.*" checks="[_a-zA-Z0-9]*"/>
Ray Milkey70d91cc2014-03-18 15:22:27 -070017
Ray Milkey5df613b2014-04-15 10:50:56 -070018 <!-- BigSwitch packet code is designed to use parameter names that override
19 local member names -->
20 <suppress files="net.onrc.onos.core.packet.*" checks="HiddenField"/>
21
Ray Milkey70d91cc2014-03-18 15:22:27 -070022 <suppress files=".*" checks="FinalParametersCheck"/>
23 <suppress files=".*" checks="MagicNumbersCheck"/>
24 <suppress files=".*" checks="DesignForExtensionCheck"/>
25 <suppress files=".*" checks="TodoCommentCheck"/>
26 <suppress files=".*" checks="AvoidInlineConditionalsCheck"/>
27 <suppress files=".*" checks="OperatorWrapCheck"/>
28</suppressions>
29