forked from twisted/twisted
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
113 lines (110 loc) · 3.63 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
[flake8]
disable-noqa = False
max-line-length = 182
extend-ignore =
# whitespace before : is not PEP8 compliant (& conflicts with black)
E203,
per-file-ignores =
src/twisted/*:
# block comment should start with '# '
E265,
# too many leading '#' for block comment
E266,
# multiple imports on one line
E401,
# module level import not at top of file
E402,
# comparison to None should be 'if cond is None:'
E711,
# comparison to True should be 'if cond is True:' or 'if cond:'
E712,
# do not compare types, use 'isinstance()'
E721,
# do not assign a lambda expression, use a def
E731,
# ambiguous variable name 'l'
E741,
# ambiguous function definition 'l'
E743,
# .has_key() is deprecated, use 'in'
W601,
docs/*:
# block comment should start with '# '
E265,
# too many leading '#' for block comment
E266,
# multiple imports on one line
E401,
# module level import not at top of file
E402,
# ambiguous variable name 'l'
E741,
# 'string' imported but unused
F401,
# 'from Foundation import *' used; unable to detect undefined names
F403,
# 'USEREVENT' may be undefined, or defined from star imports: pygame.locals
F405,
# redefinition of unused 'pb' from line 8
F811,
# undefined name 'name'
F821,
# local variable 'd' is assigned to but never used
F841,
# trailing whitespace
W291,
# blank line contains whitespace
W293,
[tool:pydoctor]
quiet=1
warnings-as-errors=true
project-name=Twisted
project-url=https://twisted.org/
docformat=epytext
theme=readthedocs
privacy=
HIDDEN:twisted.words.test
HIDDEN:twisted.web.test
HIDDEN:twisted.spread.test
HIDDEN:twisted.scripts.test
HIDDEN:twisted.runner.test
HIDDEN:twisted.python.test
HIDDEN:twisted.protocols.haproxy.test
HIDDEN:twisted.protocols.test
HIDDEN:twisted.positioning.test
HIDDEN:twisted.persisted.test
HIDDEN:twisted.pair.test
HIDDEN:twisted.names.test
HIDDEN:twisted.mail.test
HIDDEN:twisted.logger.test
HIDDEN:twisted.cred.test
HIDDEN:twisted.conch.test
HIDDEN:twisted.application.runner.test
HIDDEN:twisted.application.twist.test
HIDDEN:twisted.application.test
HIDDEN:twisted._threads.test
HIDDEN:twisted.trial._dist.test
HIDDEN:twisted.trial.test
HIDDEN:twisted.internet.test
HIDDEN:twisted.test.*
PUBLIC:twisted.test.proto_helpers
intersphinx=
https://docs.python.org/3/objects.inv
https://cryptography.io/en/latest/objects.inv
https://pyopenssl.readthedocs.io/en/stable/objects.inv
https://hyperlink.readthedocs.io/en/stable/objects.inv
https://twisted.org/constantly/docs/objects.inv
https://twisted.org/incremental/docs/objects.inv
https://python-hyper.org/projects/hyper-h2/en/stable/objects.inv
https://priority.readthedocs.io/en/stable/objects.inv
https://zopeinterface.readthedocs.io/en/latest/objects.inv
https://automat.readthedocs.io/en/latest/objects.inv
;
; These options are used as default for the tox and direct command line usage.
; They are designed to help with documentation development.
; For documentation publishing, they need to be overriden in sphinx's conf.py
; No custom `--template-dir` is use here.
; We do have a custom template for final documentation publishing.
project-base-dir=src/twisted
html-output=docs/_build/api
html-viewsource-base=https://github.com/twisted/twisted/tree/trunk/src