24 lines
432 B
INI
24 lines
432 B
INI
[flake8]
|
|
max-line-length = 80
|
|
import-order-style = google
|
|
application-import-names = timetable, tickets, home, films, users
|
|
exclude =
|
|
.git,
|
|
__pycache__,
|
|
.venv,
|
|
venv,
|
|
*/migrations/,
|
|
*/.venv/,
|
|
*/venv/,
|
|
.prod,
|
|
.dev,
|
|
.test,
|
|
tvenv
|
|
plugins =
|
|
flake8-commas
|
|
flake8-import-order
|
|
flake8-return
|
|
flake8-quotes
|
|
flake8-clean-block
|
|
flake8-expression-complexity
|
|
flake8-bugbear |