-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
35 lines (32 loc) · 700 Bytes
/
setup.cfg
File metadata and controls
35 lines (32 loc) · 700 Bytes
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
[aliases]
test=pytest
[tool:pytest]
xfail_strict = true
addopts =
--verbose -n auto
testpaths = test/unit_tests
[isort]
line_length = 100
multi_line_output = 3
include_trailing_comma = true
profile=black
[flake8]
ignore =
# not pep8, black adds whitespace before ':'
E203,
# not pep8, black adds line break before binary operator
W503,
# Google Python style is not RST until after processed by Napoleon
# See https://github.com/peterjc/flake8-rst-docstrings/issues/17
RST201,RST203,RST301,
max_line_length = 100
max-complexity = 10
exclude =
__pycache__
.tox
.git
bin
build
venv
src/braket/default_simulator/openqasm/parser
openqasm