*finally* a working .landscape.yml
This commit is contained in:
parent
501f6f11ba
commit
828d5d6d29
@ -3,13 +3,20 @@ pylint:
|
|||||||
# We use this a lot (e.g. via document._meta)
|
# We use this a lot (e.g. via document._meta)
|
||||||
- protected-access
|
- protected-access
|
||||||
|
|
||||||
additional-builtins:
|
options:
|
||||||
# add xrange and long as valid built-ins. In Python 3, xrange is
|
additional-builtins:
|
||||||
# translated into range and long is translated into int via 2to3 (see
|
# add xrange and long as valid built-ins. In Python 3, xrange is
|
||||||
# "use_2to3" in setup.py). This should be removed when we drop Python
|
# translated into range and long is translated into int via 2to3 (see
|
||||||
# 2 support (which probably won't happen any time soon).
|
# "use_2to3" in setup.py). This should be removed when we drop Python
|
||||||
- xrange
|
# 2 support (which probably won't happen any time soon).
|
||||||
- long
|
- xrange
|
||||||
|
- long
|
||||||
|
|
||||||
|
pyflakes:
|
||||||
|
disable:
|
||||||
|
# undefined variables are already covered by pylint (and exclude
|
||||||
|
# xrange & long)
|
||||||
|
- F821
|
||||||
|
|
||||||
ignore-paths:
|
ignore-paths:
|
||||||
- benchmark.py
|
- benchmark.py
|
||||||
|
Loading…
x
Reference in New Issue
Block a user