-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathsetup.cfg
36 lines (32 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
[flake8]
max-complexity = 12
max-line-length = 80
ignore = E501,W503,E741,E203,N802,N803,N806,E743,N812,N818,E731,B020,B905,E704
select = C,E,F,N,W,B,B9,Q0
per-file-ignores =
../notebooks/*.py:E703
[isort]
multi_line_output = 3
include_trailing_comma = 1
line_length = 85
sections = FUTURE,STDLIB,TYPING,THIRDPARTY,FIRSTPARTY,LOCALFOLDER
known_typing = typing, typing_extensions
no_lines_before = TYPING
combine_as_imports = true
skip_gitignore = true
skip = extern/
[tool:pytest]
filterwarnings =
ignore:Call to deprecated create function.*code or query the descriptor_pool.:DeprecationWarning
ignore:the imp module is deprecated in favour of importlib:DeprecationWarning
ignore:.*is a deprecated alias for the builtin.*:DeprecationWarning
ignore:Passing None into shape arguments as an alias for ():DeprecationWarning
ignore:numpy.ufunc size changed, may indicate binary incompatibility:RuntimeWarning
norecursedirs = vendor
[coverage:run]
branch = true
source = deepqmc
parallel = true
[pydocstyle]
add-ignore = D100,D102,D104,D105,D107,D202,D401
ignore-decorators = wraps