mirror of
https://github.com/TandoorRecipes/recipes.git
synced 2025-12-24 02:39:20 -05:00
23 lines
506 B
INI
23 lines
506 B
INI
[flake8]
|
|
extend-ignore =
|
|
# Whitespace before ':' - Required for black compatibility
|
|
E203,
|
|
# Line break occurred before a binary operator - Required for black compatibility
|
|
W503,
|
|
# Comparison to False should be 'if cond is False:' or 'if not cond:'
|
|
E712
|
|
exclude =
|
|
.git,
|
|
**/__pycache__,
|
|
**/.git,
|
|
**/.svn,
|
|
**/.hg,
|
|
**/CVS,
|
|
**/.DS_Store,
|
|
.vscode,
|
|
**/*.pyc
|
|
per-file-ignores=
|
|
cookbook/apps.py:F401
|
|
max-line-length = 179
|
|
|