* Added base admin login/logout flows * Ignore local database * Channel model * Admin interface for channels and plugins * Added database tests along with workflows * Added some docstrings * Ignore .coverage file * Creating plugins docs WIP * Documentation * Black everything * Some documentation * Coverage for the plugins package as well * DB Fixes * Absolute FROM in Dockerfile * Database and logging fixes * Slack: Support private channels * Added pre-commit * black'd * Fixed UserQuery.create * Fixed ChannelPluginQuery.create exists call * Added ChannelPlugin menu for debugging * Ignore sqlite databases * Updated contributing docs
16 lines
434 B
INI
16 lines
434 B
INI
[flake8]
|
|
ignore = E203, E266, E501, W503, F403
|
|
max-line-length = 88
|
|
max-complexity = 18
|
|
select = B,C,E,F,W,T4,B9
|
|
|
|
[isort]
|
|
use_parentheses = True
|
|
multi_line_output = 3
|
|
include_trailing_comma = True
|
|
length_sort = 1
|
|
lines_between_types = 0
|
|
line_length = 88
|
|
known_third_party = dataset,dice,flask,pkg_resources,pytest,requests,structlog
|
|
sections = FUTURE, STDLIB, DJANGO, THIRDPARTY, FIRSTPARTY, LOCALFOLDER
|
|
no_lines_before = LOCALFOLDER
|