forked from qatrackplus/qatrackplus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
66 lines (61 loc) · 1.67 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[bdist_wheel]
python-tag = py3
[yapf]
based_on_style = pep8
blank_line_before_nested_class_or_def = True
coalesce_brackets = True
column_limit = 120
dedent_closing_brackets = True
each_dict_entry_on_separate_line = True
indent_dictionary_value = True
join_multiple_lines = False
space_between_ending_comma_and_closing_bracket = False
split_before_first_argument = False
split_before_dict_set_generator = False
split_before_expression_after_opening_paren = True
split_before_logical_operator = False
split_arguments_when_comma_terminated = True
[tool:pytest]
DJANGO_SETTINGS_MODULE=qatrack.settings
python_files = test*.py
norecursedirs = .git qatrack/media docs src .eggs dist __pycache__ build
markers =
selenium: marks tests that use django live test case and web browser
filterwarnings =
error:.*RemovedInDjango31.*
ignore:numpy.ufunc size changed:RuntimeWarning
ignore:.*Importing from numpy.matlib.*
ignore:.*Plural value must be an integer, got float.*
ignore:.*Using or importing the ABCs.*
[isort]
line_length = 80
indent = ' '
multi_line_output = 3
include_trailing_comma = True
force_sort_within_sections = True
known_third_party=recurrence
[flake8]
max-line-length = 120
exclude =
.git,
fixtures,
migration_data,
migrations,
south_migrations,
node_modules,
media,
static,
deploy
local_settings.py
*tmp*
ignore =
# ignore complexity checks
C901,
# ignore ambiguous variable names
E741
# ignore visual indent with same indent as next logical line
E129, E125
# Allow binary operators to start rather than end lines
W503, W504
# Ignore missing whitespace around arithmetic operator
E226