-
Notifications
You must be signed in to change notification settings - Fork 951
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -132,6 +132,8 @@ fail-under=10.0 | |
# Return non-zero exit code if any of these messages/categories are detected. | ||
fail-on= | ||
|
||
|
||
|
||
[pylint.messages_control] | ||
# Only show warnings with the listed confidence levels. | ||
# confidence= | ||
|
@@ -450,7 +452,7 @@ overgeneral-exceptions=Exception | |
|
||
[pylint.typing] | ||
# app / library does need runtime introspection of type annotations. | ||
runtime-typing = no | ||
runtime-typing = true | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
dhoomakethu
Author
Contributor
|
||
|
||
[pylint.deprecated_builtins] | ||
# List of builtins function names that should not be used. | ||
|
This is not a good idea, it makes the runtime quite a lot slower (and there are known problems with coroutines).
Please have a look at the .pyc files.
It is of course ok, to activate it for development purposes.