Commit b1f2c962 authored by Jason Madden's avatar Jason Madden

more landscape steps.

parent b2c4bbf3
......@@ -26,6 +26,8 @@ ignore-patterns:
# standard library code
- ^greentest/2.*
- ^greentest/3.*
# benchmarks that aren't used/changed much
- ^greentest/bench_.*py
pyroma:
run: true
......@@ -11,6 +11,11 @@ disable=wrong-import-position,
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
no-self-use, # common in superclasses with extension points
too-few-public-methods, # Exception and marker classes get tagged with this
exec-used, # should tag individual instances with this, there are some but not too many
global-statement, # should tag individual instances
multiple-statements, # "from gevent import monkey; monkey.patch_all()"
[FORMAT]
# duplicated from setup.cfg
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment