-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add support for typing.overload (#22)
* add support for typing.overload
- Loading branch information
1 parent
628f301
commit 83fdea8
Showing
6 changed files
with
68 additions
and
12 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,6 +1,3 @@ | ||
{ | ||
"python.analysis.typeCheckingMode": "basic", | ||
"python.linting.pylintEnabled": true, | ||
"python.linting.enabled": true, | ||
"python.formatting.provider": "black" | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
"""The arguments section checks.""" | ||
"""The attributes section checks.""" | ||
|
||
from __future__ import annotations | ||
|
||
|
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,18 +1,19 @@ | ||
[tool.poetry] | ||
name = "flake8-docstrings-complete" | ||
version = "1.2.0" | ||
version = "1.3.0" | ||
description = "A linter that checks docstrings are complete" | ||
authors = ["David Andersson <[email protected]>"] | ||
license = "Apache 2.0" | ||
readme = "README.md" | ||
packages = [{include = "flake8_docstrings_complete"}] | ||
packages = [{ include = "flake8_docstrings_complete" }] | ||
classifiers = [ | ||
"Framework :: Flake8", | ||
"Environment :: Console", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: Apache Software License", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.12", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.9", | ||
|
@@ -57,9 +58,5 @@ module = "tests.*" | |
disallow_untyped_defs = false | ||
|
||
[tool.pylint.messages_control] | ||
enable = [ | ||
"useless-suppression" | ||
] | ||
disable = [ | ||
"wrong-import-position" | ||
] | ||
enable = ["useless-suppression"] | ||
disable = ["wrong-import-position"] |
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