-
-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrade dev dependencies + use hash digests for pinned dependencies.
- Loading branch information
Showing
7 changed files
with
505 additions
and
99 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,26 @@ | ||
# http://flake8.pycqa.org/en/latest/user/configuration.html | ||
# https://flake8.pycqa.org/en/latest/user/configuration.html | ||
[flake8] | ||
# B = bugbear | ||
# E = pycodestyle errors | ||
# F = flake8 pyflakes | ||
# W = pycodestyle warnings | ||
# B9 = bugbear opinions | ||
|
||
ignore = | ||
E501, # line too long (REMOVE THIS if we adopt auto-formatting) | ||
E265, # block comment should start with '# ' | ||
E266, # too many leading '#' for block comment | ||
E402, # import not at top of file | ||
E704, # more than one statement on a single line (flags @typing.overload's) | ||
E722, # broad except | ||
F811, # redefinition of unused ... (flags @typing.overload's) | ||
extend-ignore = | ||
# line too long | ||
E501 | ||
# block comment should start with '# ' | ||
E265, | ||
# too many leading '#' for block comment | ||
E266, | ||
|
||
per-file-ignores = | ||
# __init__.py collects functionality implemented in the rest of the package | ||
# for the sole purpose of exporting it under the `bidict` module namespace, | ||
# and does not understand mypy-style "import foo as foo" explicit re-exports, | ||
# so ignore F401 in this file ("imported but unused"). | ||
bidict/__init__.py:F401 | ||
|
||
# import not at top of file | ||
setup.py:E402 | ||
docs/conf.py:E402 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.