-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
22 lines (22 loc) · 697 Bytes
/
setup.cfg
File metadata and controls
22 lines (22 loc) · 697 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Configure flake8 for testing pep-8 style compliance
[flake8]
# TODO: Change this to "black" default of 88
max-line-length = 120
extend-ignore = E203
exclude =
# No need to traverse our git directory
.git,
# There's no value in checking cache directories
__pycache__,
# The conf file is mostly autogenerated, ignore it
docs/source/conf.py,
# This contains our built documentation
build,
# This contains builds of flake8 that we don't want to check
dist
max-complexity = 10
# This configures the docstring format
docstring-convention = google
per-file-ignores =
# Ignore google format docstrings for tests
tests/*:D100,D202,D204,D205,D212,D400,D415