1[yapf]
2based_on_style = pep8
3
4# RDkit prefers an indentation level of 2 and a maximum line length of 100
5indent_width = 2
6continuation_indent_width = 2
7column_limit = 100
8
9# There is always an extra line before a nested class or function definition
10blank_line_before_nested_class_or_def = true
11
12# We avoid short if condition: doSomething() on one line
13join_multiple_lines = false
14
15coalesce_brackets = true
16
17# Avoid function arguments on separate lines and splitting lines before the first argument.
18split_before_named_assigns = false
19split_before_first_argument = false
20
21
22[pep8]
23ignore = E114,E128,E111,E121,E126,W391,W191
24max-line-length = 100
25