Skip to content
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

Code Completion: Adding stub generator utility (and generated stub) #1939

Merged
merged 4 commits into from
Mar 27, 2024
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CONTRIBUTING.rst
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ Making Changes
- Check for unnecessary whitespace with ``git diff --check`` before
committing.
- Make sure you have added the necessary tests for your changes.
- Run ``make lint`` in the repository directory and commit any changes it makes.
- Run *all* the tests to assure nothing else was accidentally broken.

Submitting Changes
Expand Down
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,10 @@ black:
isort:
isort --atomic .

lint: isort black mypy flake8
generate-stubs:
python generate-stubs.py

lint: generate-stubs isort black mypy flake8

release:
check-manifest
Expand Down
Loading