forked from mordred-descriptor/mordred
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.cfg
30 lines (28 loc) · 919 Bytes
/
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
[flake8]
# D100 Missing docstring in public module
# D101 Missing docstring in public class
# D102 Missing docstring in public method
# D103 Missing docstring in public function
# D105 Missing docstring in magic method
# D107 Missing docstring in __init__
# D203 1 blank line required before class docstring
#
# I101 Imported names are in the wrong order.
#
# N801 class names should use CapWords convention
# N802 function name should be lowercase
# N803 argument name should be lowercase
# N806 variable in function should be lowercase
# N814 camelcase imported as constant
# H301 one import per line
# H304 No relative imports.
# W503 line break before binary operator
ignore = D100,D101,D102,D103,D105,D107,D203,I101,N801,N802,N803,N806,N814,H301,H304,P101,P102,P103,W503
max-line-length = 99
inline-quotes = "
[isort]
line_length=100
indent=' '
multi_line_output=5
length_sort=1
include_trailing_comma=True