-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathsetup.cfg
36 lines (32 loc) · 962 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
31
32
33
34
35
36
# Generated from:
# https://github.com/zopefoundation/meta/tree/master/config/c-code
[zest.releaser]
create-wheel = no
[flake8]
doctests = 1
# E221 multiple spaces before operator
# E225 missing whitespace around operator
# E262 inline comment should start with '# '
# F401 imported but unused
# F403 'import *' used; unable to detect undefined names
per-file-ignores =
src/zodbpickle/fastpickle.py: F401 F403
src/zodbpickle/pickle.py: F401 F403
src/zodbpickle/pickle_3.py: E221 E225 E262 F401 F403
src/zodbpickle/pickletools_3.py: E221
src/zodbpickle/slowpickle.py: F401 F403
[check-manifest]
ignore =
.editorconfig
.meta.toml
docs/_build/html/_sources/*
[isort]
force_single_line = True
combine_as_imports = True
sections = FUTURE,STDLIB,THIRDPARTY,ZOPE,FIRSTPARTY,LOCALFOLDER
known_third_party = docutils, pkg_resources, pytz
known_zope =
known_first_party =
default_section = ZOPE
line_length = 79
lines_after_imports = 2