-
-
Notifications
You must be signed in to change notification settings - Fork 136
Expand file tree
/
Copy pathsetup.cfg
More file actions
29 lines (27 loc) · 625 Bytes
/
setup.cfg
File metadata and controls
29 lines (27 loc) · 625 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
[flake8]
max-line-length = 120
ignore =
E401,
E731,
D,
W503,
W504
exclude =
tests/mockito,
tests/parameterized/,
.svn,CVS,.bzr,.hg,.git,.venv
per-file-ignores =
**/__init__.py:F401, F403
git_savvy.py:F401, F403
[codespell]
skip = docs/_build,.mypy_cache,*.sublime-workspace,.git,tests/mockito,tests/parameterized
; mockito uses atleast as a keyword
ignore-words-list=atleast,commitish,falsy
[isort]
known_local_folder=GitSavvy
skip_glob=docs/*,tests/mockito/*,tests/parameterized/*
profile=black
line_length=90
force_sort_within_sections=true
lines_after_imports=2
combine_as_imports=true