summaryrefslogtreecommitdiff
path: root/pylintrc
blob: 9de16177e8b33fafadc93578d906134a7f772759 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Copyright 2021 The ChromiumOS Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

# Changes to make pylint and black agree on the formatting.

[MESSAGES CONTROL]

disable=
    bad-continuation,
    bad-whitespace,
    line-too-long,
    # These have nothing to do with black, they are just annoying
    fixme,
    too-few-public-methods,
    too-many-arguments,
    too-many-branches,
    too-many-locals,
    too-many-nested-blocks,
    too-many-statements

[format]

string-quote=double