Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gevent
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gevent
Commits
b2c4bbf3
Commit
b2c4bbf3
authored
Mar 10, 2016
by
Jason Madden
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Intermediate work on landscape/prospector config.
parent
1c41809e
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
41 additions
and
2 deletions
+41
-2
.landscape.yml
.landscape.yml
+16
-1
.pylintrc
.pylintrc
+23
-0
setup.cfg
setup.cfg
+2
-1
No files found.
.landscape.yml
View file @
b2c4bbf3
doc-warnings
:
yes
doc-warnings
:
no
# experimental, raises an exception
test-warnings
:
no
strictness
:
veryhigh
max-line-length
:
160
...
...
@@ -11,6 +11,21 @@ python-targets:
-
3
ignore-paths
:
-
examples/webchat
-
doc/
-
build
-
dist
-
.eggs
# util creates lots of warnings. ideally they should be fixed,
# but that code doesn't change often
-
util
# likewise with scripts
-
scripts/
ignore-patterns
:
# disabled code
-
greentest/xtest_.*py
# standard library code
-
^greentest/2.*
-
^greentest/3.*
pyroma
:
run
:
true
.pylintrc
0 → 100644
View file @
b2c4bbf3
[MESSAGES CONTROL]
# Disable the message, report, category or checker with the given id(s). You
# can either give multiple identifier separated by comma (,) or put this option
# multiple time (only on the command line, not in the configuration file where
# it should appear only once).
#disable=I0011,W0511,W0312,C0103,C0301,C0111,C0324,C0321,R0903,R0201,W0613,W0232,W0142,R0922,C0330
disable=wrong-import-position,
wrong-import-order,
missing-docstring,
ungrouped-imports,
invalid-name, # We get lots of these, especially in scripts. should fix many of them
protected-access, # We have many cases of this; legit ones need to be examinid and commented, then this removed
[FORMAT]
# duplicated from setup.cfg
max-line-length=160
[MISCELLANEOUS]
# List of note tags to take in consideration, separated by a comma.
#notes=FIXME,XXX,TODO
# Disable that, we don't want them in the report (???)
notes=
setup.cfg
View file @
b2c4bbf3
[pep8]
ignore=E702,E265,E402,E731,E266,E261,W503,E129
# N801: class names should use CapWords
ignore=E702,E265,E402,E731,E266,E261,W503,E129,N801
max_line_length=160
exclude=.runtimes,.eggs,.tox,.git,build,2.6,2.7,2.7pypy,3.3,3.5,test_support.py,test_queue.py,patched_tests_setup.py,test_threading_2.py,lock_tests.py,_sslgte279.py,3.4
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment