2022-05-02 13:53:19 +00:00
|
|
|
# https://github.com/klen/pylama#configuration-file
|
|
|
|
[pylama]
|
|
|
|
format = pylint
|
|
|
|
skip = .venv/*
|
|
|
|
linters = pyflakes,pylint,pycodestyle
|
2022-07-08 19:23:12 +00:00
|
|
|
ignore = F0401,C0114,R0903,C0115,C0116,W0511
|
2022-05-02 13:53:19 +00:00
|
|
|
|
|
|
|
[pylama:pylint]
|
2022-07-08 19:23:12 +00:00
|
|
|
max_line_length = 130
|
2022-05-02 13:53:19 +00:00
|
|
|
score = yes
|
|
|
|
|
|
|
|
[pylama:pycodestyle]
|
|
|
|
# Maximum length of each line
|
2022-07-08 19:23:12 +00:00
|
|
|
max_line_length = 130
|