File: setup.cfg

package info (click to toggle)
rdkit 202503.6-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 222,000 kB
  • sloc: cpp: 411,111; python: 78,482; ansic: 26,181; java: 8,285; javascript: 4,404; sql: 2,393; yacc: 1,626; lex: 1,267; cs: 1,090; makefile: 581; xml: 229; fortran: 183; sh: 121
file content (24 lines) | stat: -rw-r--r-- 645 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[yapf]
based_on_style = pep8

# RDkit prefers an indentation level of 2 and a maximum line length of 100
indent_width = 2
continuation_indent_width = 2
column_limit = 100

# There is always an extra line before a nested class or function definition
blank_line_before_nested_class_or_def = true

# We avoid short if condition: doSomething() on one line
join_multiple_lines = false

coalesce_brackets = true

# Avoid function arguments on separate lines and splitting lines before the first argument.
split_before_named_assigns = false
split_before_first_argument = false


[pep8]
ignore = E114,E128,E111,E121,E126,W391,W191
max-line-length = 100