-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.cfg
70 lines (59 loc) · 1.37 KB
/
setup.cfg
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
69
70
# -*- coding: utf-8 -*-
#
# This software may be modified and distributed under the terms
# of the Apache License, Version 2.0 license. See the LICENSE file for details.
[bdist_wheel]
universal=1
[metadata]
license_file = LICENSE
[flake8]
exclude = build,.git,docs
ignore = E127,E128,
max-line-length = 100
per-file-ignores =
# this file has many long lines, define it as OK
tests/full_output_test.py:E501
[isort]
line_length = 100
indent = 4
multi_line_output = 3
length_sort = false
force_alphabetical_sort_within_sections = true
sections = FUTURE,STDLIB,THIRDPARTY,FIRSTPARTY,LOCALFOLDER
lines_after_imports = 2
from_first = true
include_trailing_comma = true
# the following sections are for pylint
[MASTER]
ignore=.git
persistent=no
load-plugins=
pylint.extensions.bad_builtin,
pylint.extensions.check_elif,
pylint.extensions.comparetozero,
pylint.extensions.emptystring,
pylint.extensions.mccabe,
pylint.extensions.overlapping_exceptions,
pylint.extensions.redefined_variable_type
[MESSAGES CONTROL]
disable=
fixme,
duplicate-code,
empty-docstring,
logging-format-interpolation,
missing-docstring
[REPORTS]
output-format=parseable
files-output=no
reports=no
[FORMAT]
max-line-length=100
[VARIABLES]
dummy-variables-rgx=_|dummy
[DESIGN]
min-public-methods=0
max-attributes=15
max-args=7
max-parents=9
[EXCEPTIONS]
overgeneral-exceptions=