mirror of
https://github.com/xonsh/xonsh.git
synced 2025-03-04 08:24:40 +01:00
32 lines
680 B
YAML
32 lines
680 B
YAML
doc-warnings: yes
|
|
test-warnings: yes
|
|
strictness: veryhigh
|
|
max-line-length: 100
|
|
autodetect: yes
|
|
ignore-paths:
|
|
- docs/conf.py
|
|
|
|
pylint:
|
|
disable:
|
|
- syntax-error # have to do this since landscape doesn't support py3k
|
|
- super-on-old-class
|
|
- old-style-class
|
|
- global-variable-not-assigned
|
|
- pointless-except
|
|
- unused-argument
|
|
- protected-access
|
|
- global-statement
|
|
- eval-used
|
|
- exec-used
|
|
- too-many-lines
|
|
- import-self
|
|
- redefined-outer-name
|
|
- invalid-name
|
|
- too-few-public-methods
|
|
- no-init
|
|
- star-args
|
|
|
|
mccabe:
|
|
disable:
|
|
- MC0000 # again, not Py3k compatabile
|
|
- MC0001 # silly cyclomatic complexity
|