# PYLINT: General settings for ecl2df 

[GENERAL]
disable=R0205, F0010, C0330, E1136, E0401,C0114
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,name,version

[FORMAT]
max-line-length=88

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