superset/.landscape.yml

26 lines
405 B
YAML
Raw Normal View History

2016-03-16 18:23:09 -04:00
doc-warnings: yes
test-warnings: no
strictness: medium
max-line-length: 90
uses:
- flask
autodetect: yes
pylint:
disable:
- cyclic-import
2016-03-16 23:56:27 -04:00
- invalid-name
2016-03-16 18:23:09 -04:00
options:
docstring-min-length: 10
2016-03-16 23:56:27 -04:00
pep8:
full: true
2016-03-16 18:23:09 -04:00
ignore-paths:
- docs
2016-03-18 02:44:58 -04:00
- dashed/migrations/env.py
- dashed/ascii_art.py
2016-03-16 18:23:09 -04:00
ignore-patterns:
- ^example/doc_.*\.py$
- (^|/)docs(/|$)
python-targets:
- 2
- 3