1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
|
# Copyright 2014 Google Inc. All rights reserved.
#
# 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.
# This file is taken from the suggested pylint configuration in
# Google's Python Style Guide, specifically
# https://github.com/google/styleguide/blob/28d10d1/pylintrc
# The only changes are to comment out the disabling of no-self-use, to
# get rid of the "useless option value" warning from pylint, and to
# turn off the score message.
[MAIN]
persistent=yes
[MESSAGES CONTROL]
disable=
broad-except,
fixme,
global-statement,
locally-disabled,
missing-docstring,
# no-self-use, # Pylint generates a 'useless option value' warning for this
too-many-arguments,
too-few-public-methods,
too-many-branches,
too-many-instance-attributes,
too-many-locals,
too-many-public-methods,
too-many-return-statements,
too-many-statements,
unidiomatic-typecheck,
[REPORTS]
reports=no
[SCORE]
score=no # Suppress the "score" message in the output.
[BASIC]
# By default, pylint wants method names to be at most 31 chars long,
# but we want to allow up to 49 to allow for longer test names.
method-rgx=[a-zA-Z_][a-zA-Z0-9_]{0,48}$
# By default, pylint only allows UPPER_CASE constants, but we want to
# allow snake_case as well in some situations.
const-rgx=[a-zA-Z_][a-zA-Z0-9_]{0,30}$
# By default, pylint wants all parameter names to be at least two chars long,
# but we want to allow single-char parameter names as well.
argument-rgx=[a-z_][a-z0-9_]{0,30}$
# By default, pylint wants all variable names to be at least two chars long,
# but we want to allow single-char variable names as well.
variable-rgx=[a-z_][a-z0-9_]{0,30}$
|