-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from FasterSpeeding/task/bump-hikari
Bump hikari version
- Loading branch information
Showing
6 changed files
with
39 additions
and
4 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 |
---|---|---|
@@ -0,0 +1,34 @@ | ||
[flake8] | ||
count = true | ||
|
||
ignore = | ||
A002, # Argument is shadowing a python builtin. | ||
A003, # Class attribute is shadowing a python builtin. | ||
CFQ002, # Function has too many arguments. | ||
D102, # Missing docstring in public method. | ||
D105, # Magic methods not having a docstring. | ||
D412, # No blank lines allowed between a section header and its content | ||
E402, # Module level import not at top of file (isn't compatible with our import style). | ||
IFSTMT001 # "use a oneliner here". | ||
T101, # TO-DO comment detection (T102 is FIX-ME and T103 is XXX). | ||
W503, # line break before binary operator. | ||
W504, # line break before binary operator (again, I guess). | ||
S101, # Use of assert detected. The enclosed code will be removed when compiling to optimised byte code. | ||
E203, # whitespace before ':' | ||
E231 # missing whitespace after ',' | ||
|
||
# F403: cannot detect unused vars if we use starred import | ||
# F405: __all__ field may be undefined or defined from star imports | ||
per-file-ignores = | ||
yuyo/__init__.py: F403,F405 | ||
|
||
max-complexity = 20 | ||
max-function-length = 130 | ||
# Technically this is 120, but black has a policy of "1 or 2 over is fine if it is tidier", so we have to raise this. | ||
max-line-length = 130 | ||
show_source = False | ||
statistics = False | ||
|
||
accept-encodings = utf-8 | ||
docstring-convention = numpy | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
hikari~=2.0.0.dev93 | ||
hikari~=2.0.0.dev99 |
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