-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: [email protected] <[email protected]>
- Loading branch information
Showing
4 changed files
with
54 additions
and
3 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 |
---|---|---|
|
@@ -81,5 +81,5 @@ | |
cash=True, | ||
icon="mdi:gas-station", | ||
suggested_display_precision=2, | ||
), | ||
), | ||
} |
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 |
---|---|---|
@@ -0,0 +1,50 @@ | ||
[MASTER] | ||
ignore=tests | ||
# Use a conservative default here; 2 should speed up most setups and not hurt | ||
# any too bad. Override on command line as appropriate. | ||
jobs=2 | ||
persistent=no | ||
|
||
[BASIC] | ||
good-names=id,i,j,k,ex,Run,_,fp | ||
max-attributes=15 | ||
argument-naming-style=snake_case | ||
attr-naming-style=snake_case | ||
|
||
[MESSAGES CONTROL] | ||
# Reasons disabled: | ||
# locally-disabled - it spams too much | ||
# too-many-* - are not enforced for the sake of readability | ||
# too-few-* - same as too-many-* | ||
# import-outside-toplevel - TODO | ||
disable= | ||
duplicate-code, | ||
fixme, | ||
import-outside-toplevel, | ||
locally-disabled, | ||
too-few-public-methods, | ||
too-many-arguments, | ||
too-many-public-methods, | ||
too-many-instance-attributes, | ||
too-many-branches, | ||
too-many-statements, | ||
broad-except, | ||
too-many-lines, | ||
too-many-locals, | ||
unexpected-keyword-arg, | ||
abstract-method, | ||
|
||
[REFACTORING] | ||
|
||
# Maximum number of nested blocks for function / method body | ||
max-nested-blocks=8 | ||
|
||
[REPORTS] | ||
score=no | ||
|
||
[TYPECHECK] | ||
# For attrs | ||
ignored-classes=_CountingAttr | ||
|
||
[FORMAT] | ||
expected-line-ending-format=LF |
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