-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Darglint Checks #2459
Comments
Duplicate of #458 |
Everyone wants darglint 😂 |
@charliermarsh Haha I’m sure! Sorry that I didn’t come across that ticket before making a new one. I appreciate you linking the original ticket! |
edgarrmondragon
added a commit
to meltano/sdk
that referenced
this issue
Feb 27, 2023
- Auto-fixed unused imports (F401) - Fixed some unused variables and redefined test functions - Fixed docstring conventions in `singer_sdk/helpers/_state.py` - Fixed some imports and removed `isort` from pre-commit Can't get rid of flake8 entirely yet due to astral-sh/ruff#2459
edgarrmondragon
added a commit
to meltano/sdk
that referenced
this issue
Feb 27, 2023
- Auto-fixed unused imports (F401) - Fixed some unused variables and redefined test functions - Fixed docstring conventions in `singer_sdk/helpers/_state.py` - Fixed some imports and removed `isort` from pre-commit Can't get rid of flake8 entirely yet due to astral-sh/ruff#2459
edgarrmondragon
added a commit
to meltano/sdk
that referenced
this issue
Feb 27, 2023
- Auto-fixed unused imports (F401) - Fixed some unused variables and redefined test functions - Fixed docstring conventions in `singer_sdk/helpers/_state.py` - Fixed some imports and removed `isort` from pre-commit Can't get rid of flake8 entirely yet due to astral-sh/ruff#2459
edgarrmondragon
added a commit
to meltano/sdk
that referenced
this issue
Feb 27, 2023
- Auto-fixed unused imports (F401) - Fixed some unused variables and redefined test functions - Fixed docstring conventions in `singer_sdk/helpers/_state.py` - Fixed some imports and removed `isort` from pre-commit Can't get rid of flake8 entirely yet due to astral-sh/ruff#2459
edgarrmondragon
added a commit
to meltano/sdk
that referenced
this issue
Mar 1, 2023
- Auto-fixed unused imports (F401) - Fixed some unused variables and redefined test functions - Fixed docstring conventions in `singer_sdk/helpers/_state.py` - Fixed some imports and removed `isort` from pre-commit Can't get rid of flake8 entirely yet due to astral-sh/ruff#2459
edgarrmondragon
added a commit
to meltano/sdk
that referenced
this issue
Mar 1, 2023
- Auto-fixed unused imports (F401) - Fixed some unused variables and redefined test functions - Fixed docstring conventions in `singer_sdk/helpers/_state.py` - Fixed some imports and removed `isort` from pre-commit Can't get rid of flake8 entirely yet due to astral-sh/ruff#2459
edgarrmondragon
added a commit
to meltano/sdk
that referenced
this issue
Mar 1, 2023
- Auto-fixed unused imports (F401) - Fixed some unused variables and redefined test functions - Fixed docstring conventions in `singer_sdk/helpers/_state.py` - Fixed some imports and removed `isort` from pre-commit Can't get rid of flake8 entirely yet due to astral-sh/ruff#2459
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It would be amazing if darglint’s checks/rules were added to ruff. darglint’s GitHub repo was archived at the end of last year and it’s also quite slow.
pydocstyle’s checks only check to make sure parameters in the function match the parameters in the docstring. It doesn’t check that returns, exceptions raised, and yields are documented in the docstring.
The text was updated successfully, but these errors were encountered: