8000 feat: re-use pyright config by tjdevries · Pull Request #77 · sourcegraph/scip-python · GitHub
[go: up one dir, main page]

Skip to content

feat: re-use pyright config #77

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

Merged
merged 9 commits into from
May 3, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
fixpu: docs
  • Loading branch information
tjdevries committed May 3, 2023
commit 5754f9c34e243a0cb0973e5283336e14669a6e59
4 changes: 0 additions & 4 deletions .github/workflows/scip-snapshot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,6 @@ jobs:
steps:
- uses: actions/checkout@v2
- uses: asdf-vm/actions/install@v2
- name: Get npm cache directory
id: npm-cache
run: |
echo "::set-output name=dir::$(npm config get cache)"
- uses: actions/cache@v2
with:
path: ${{ steps.npm-cache.outputs.dir }}
Expand Down
8 changes: 8 additions & 0 deletions packages/pyright-scip/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Release v0.4

- remove: `--include` and `--exclude`. Instead use `pyproject.toml` and pyright configuration.
- add: `--target-only` to only emit and parse information related to some subdirectory of your project. Should still be run from root of project.
- add: `--project-namespace` to prefix any definitions in your current project. This can be useful when your package gets installed in some non-standard way and there doesn't have the appropriate prefix that other python packages would import from.
- Now respects pyright config by default (and discovers applicable pyright configuration).
- Updated pyright internal library
- Attempt to capture possible failures in pyright library so some indexing can still be completed.
0