tg_rss_bot/pylama.ini
Alexey Skobkin 2e44df0bbd
All checks were successful
continuous-integration/drone/push Build is passing
#2 #7 Telegram module (#10)
`telegram` module. Closes #2 #7.

Two service classes:

* `Notifier` class
* `CommandProcessor` class

Two [middlewares](https://github.com/eternnoir/pyTelegramBotAPI/tree/master/examples/middleware):

* `UserAuthMiddleware`
* `ExceptionHandlerMiddleware`

One exception for usage in the code called by the bot:

* `DisplayableException`

Merge **ONLY** after #9 is merged.

Reviewed-on: #10
Reviewed-by: Miroslavsckaya <miroslavsckaya@noreply.git.skobk.in>
2022-05-30 23:54:26 +03:00

15 lines
282 B
INI

# https://github.com/klen/pylama#configuration-file
[pylama]
format = pylint
skip = .venv/*
linters = pyflakes,pylint,pycodestyle
ignore = F0401,C0114,R0903
[pylama:pylint]
max_line_length = 120
score = yes
[pylama:pycodestyle]
# Maximum length of each line
max_line_length = 120