Skip to content

Commit

Permalink
more landscape steps.
Browse files Browse the repository at this point in the history
  • Loading branch information
jamadden committed Mar 10, 2016
1 parent b2c4bbf commit b1f2c96
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .landscape.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
5 changes: 5 additions & 0 deletions .pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit b1f2c96

Please sign in to comment.