1[flake8]
2max-line-length = 160
3builtins = _,__,P,I,lopen,icu_lower,icu_upper,icu_title,ngettext,connect_lambda
4ignore = E12,E203,E22,E231,E241,E401,E402,E731,W391,E722,E741,W504
5
6[yapf]
7based_on_style = pep8
8column_limit = 85
9split_penalty_import_names = 100
10dedent_closing_brackets = True
11coalesce_brackets = True
12blank_line_before_nested_class_or_def = True
13
14[isort]
15combine_as_imports = True
16line_length = 85
17multi_line_output = 5
18known_future_library = __python__
19known_third_party = qt
20known_standard_library = aes,elementmaker,encodings
21known_first_party = calibre_extensions
22