forked from proroklab/VectorizedMultiAgentSimulator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
26 lines (23 loc) · 623 Bytes
/
Copy pathsetup.cfg
File metadata and controls
26 lines (23 loc) · 623 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
[metadata]
description-file=README.md
license_files=LICENSE
[pep8]
max-line-length = 120
[flake8]
# note: we ignore all 501s (line too long) anyway as they're taken care of by black
max-line-length = 79
ignore = E203, E402, W503, W504, E501
per-file-ignores =
__init__.py: F401, F403, F405
test_*.py: F841, E731, E266
exclude = venv
extend-select = B901, C401, C408, C409
[pydocstyle]
;select = D417 # Missing argument descriptions in the docstring
;inherit = false
match = .*\.py
;match_dir = ^(?!(.circlecli|test)).*
convention = google
add-ignore = D100, D104, D105, D107, D102
ignore-decorators =
test_*