3253N/A# The contents of this file are subject to the terms of the
3253N/A# Common Development and Distribution License (the "License").
3253N/A# You may not use this file except in compliance with the License.
3253N/A# See the License for the specific language governing permissions
3253N/A# and limitations under the License.
3253N/A# When distributing Covered Code, include this CDDL HEADER in each
3253N/A# If applicable, add the following below this CDDL HEADER, with the
3253N/A# fields enclosed by brackets "[]" replaced with your own identifying
3253N/A# information: Portions Copyright [yyyy] [name of copyright owner]
3253N/A# Copyright (c) 2015, Oracle
and/or its affiliates. All rights reserved.
3253N/A# This file is used to control pylint's python3 checker when checking
3253N/A# See the detailed explanations of the messages at:
3253N/A# Disable the message, report, category or checker with the given id(s). You
3253N/A# can either give multiple identifiers separated by comma (,) or put this
3253N/A# option multiple times (only on the command line, not in the configuration
3253N/A# file where it should appear only once).You can also use "--disable=all" to
3253N/A# disable everything first and then reenable specific checks. For example, if
3253N/A# you want to run only the similarities checker, you can use "--disable=all
3253N/A# --enable=similarities". If you want to run only the classes checker, but have
3253N/A# no Warning level messages displayed, use"--disable=all --enable=classes
3253N/A# These messages are not so required for our gate.
3253N/A# W1636 map-builtin-not-iterating
3253N/A# W1637 zip-builtin-not-iterating
3253N/A# W1638 range-builtin-not-iterating
3253N/A# W1639 filter-builtin-not-iterating
3253N/A# Enable the message, report, category or checker with the given id(s). You can
3253N/A# either give multiple identifier separated by comma (,) or put this option
3253N/A# multiple time. See also the "--disable" option for examples.
3253N/A# W1611 standarderror-builtin
3253N/A# W1623 metaclass-assignment
3253N/Aenable=E1601,E1602,E1603,E1604,E1605,E1606,E1607,E1608,W1601,W1602,W1603,W1604,W1605,W1606,W1607,W1608,W1609,W1610,W1611,W1612,W1613,W1614,W1615,W1616,W1617,W1619,W1620,W1621,W1622,W1623,W1624,W1625,W1626,W1627,W1628,W1629,W1630,W1632,W1634,W1635,W1640
3253N/A# Template used to display messages. This is a python new-style format string
3253N/A# used to format the message information. See doc for all details
3253N/Amsg-template='{msg_id}:{line:3d},{column:2d}: {msg} ({symbol})'