-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.cfg
48 lines (44 loc) · 1.08 KB
/
setup.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[tool:pytest]
addopts = -x -s -v --disable-pytest-warnings
norecursedirs = .git src umls_api .tox node_modules
[flake8]
exclude = .git,__pycache__,legacy,build,dist,.tox,node_modules,./src
max-complexity = 11
application-import-names=umls_api,tests
ignore = T484,T499,D100,D101,D102,D103,D104,D105,D107,W504,W503
[tool:isort]
line_length=79
multi_line_output=5
length_sort=false
known_first_party=umls_api,tests
default_section=THIRDPARTY
sections=FUTURE,STDLIB,THIRDPARTY,FIRSTPARTY,LOCALFOLDER
[yapf]
based_on_style = pep8
spaces_before_comment = 2
split_before_logical_operator = true
indent_width = 4
split_complex_comprehension = true
column_limit = 79
dedent_closing_brackets = true
spaces_around_power_operator = true
no_spaces_around_selected_binary_operators = false
split_penalty_import_names = 500
join_multiple_lines = true
allow_split_before_dict_value = false
coalesce_brackets = true
[coverage:run]
omit =
tests/*
src/*
setup.py
**/wsgi.py
**/apps.py
manage.py
.tox/*
dist/*
**/settings.py
**/migrations/*
**/__init__.py
app.py
**/urls.py