-
Notifications
You must be signed in to change notification settings - Fork 185
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
Pylint integration updates #643
Merged
Merged
Changes from 1 commit
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
10a2b4f
updated files with docstrings to pass pylint
macohen 9b8b830
updated samples to prepare for enabling missing-docstring linter; wil…
macohen bc5aac1
removed missing-function-docstring from setup.cfg so the linter doesn…
macohen 78887f6
corrected unnecessary return docstring values
macohen 8752a16
fixing failure in 'black' on reformatting
macohen 435948b
updated utils to pass missing-function-docstring tests
macohen a2fa5e7
Merge branch 'opensearch-project:main' into main
macohen f3a0450
updated functions with missing docstrings or pylint ignore instructio…
macohen dabaa59
Merge branch 'opensearch-project:main' into main
macohen d26eba5
* ignoring opensearchpy for pylint and then added it back to noxfile.py
macohen 0a2302f
updated CHANGELOG.md entry
macohen fcc65a3
removed pylint ignore missing-function-docstring
macohen 2265ad3
added pylint.extensions.docparams plugin
macohen d9c0874
added four lints for opensearchpy/
macohen ffa80b3
adding await back to client.info() call
macohen 107469c
updated TODOs as requested
macohen File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
adding await back to client.info() call
Signed-off-by: Mark Cohen <markcoh@amazon.com>
- Loading branch information
commit ffa80b36c23102b94fd99dedfd5e5358a0e3aae3
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
missing param description
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm also adding a pylint extension to add missing-param-doc (when a parameter is missing from the docstring) and differing-param-doc (when a parameter is different in the function definition and the docstring).