# PYLINT: General settings for ecl2df 

[GENERAL]
disable=R0205, F0010, C0330, E1136, E0401
output-format=colorized

# E1136: Pylint is not able to detect that all objects really are subscriptable
# E0401: import-error, these will be caught by automated tests anyhow

[MASTER]
ignore=__init__.py,setup.py

[BASIC]
good-names=df,logger,rs

[FORMAT]
max-line-length=88
max-module-lines=3000

[DESIGN]
max-attributes=25
max-args=15

[SIMILARITIES]
min-similarity-lines=4
ignore-comments=yes
ignore-docstrings=yes
ignore-imports=yes
