clone of my dotfiles.ssp.sh
1[flake8]
2max-line-length = 140 #see also black config
3
4extend-exclude = [
5 "*/lib/*/site-packages",
6 ".venv",
7 "build",
8 "models",
9 ".eggs",
10 "airbyte-cdk/python/airbyte_cdk/models/__init__.py",
11 ".tox",
12 "airbyte_api_client",
13]
14
15max-complexity = 20
16max-line-length = 140
17
18extend-ignore = [
19 "E203", # whitespace before ':' (conflicts with Black)
20 "E231", # Bad trailing comma (conflicts with Black)
21 "E501", # line too long (conflicts with Black)
22 "W503", # line break before binary operator (conflicts with Black)
23]
24