Warning, /DD4hep/setup.cfg is written in an unsupported language. File is not indexed.
0001 [pycodestyle]
0002 max-line-length = 120
0003 ignore = E111, E114
0004 #continuation line with same indent as next logical line
0005 E125
0006
0007
0008 [pep8]
0009 indent_size=2
0010
0011 [flake8]
0012 exclude = .git,__pycache__,old,build,dist
0013 ignore =
0014 # indentation is not a multiple of 4
0015 E111
0016 # indentation is not a multiple of 4 (comment)
0017 E114
0018 # closing bracket does not match visual indentation
0019 E124
0020 # continuation line with same indent as next logical line
0021 E125
0022 # continuation line over-indented for visual indent
0023 E127
0024 max-line-length=120
0025 hang_closing=true
0026
0027 [yapf]
0028 based_on_style = pep8
0029 DEDENT_CLOSING_BRACKETS=false
0030 COALESCE_BRACKETS=false
0031 COLUMN_LIMIT=120
0032 EACH_DICT_ENTRY_ON_SEPARATE_LINE=true
0033 INDENT_WIDTH=2
0034 SPACES_BEFORE_COMMENT=1
0035 SPACES_AROUND_DEFAULT_OR_NAMED_ASSIGN=true
0036 SPLIT_ARGUMENTS_WHEN_COMMA_TERMINATED=true
0037 SPLIT_BEFORE_EXPRESSION_AFTER_OPENING_PAREN=false
0038 SPLIT_BEFORE_FIRST_ARGUMENT=false
0039 SPLIT_PENALTY_AFTER_OPENING_BRACKET=1000000
0040 BLANK_LINE_BEFORE_NESTED_CLASS_OR_DEF=false