Skip to content

Commit

Permalink
(Fix): Disable caching for pyright (#863)
Browse files Browse the repository at this point in the history
Similar to eslint, pyright needs to be aware of the rest of the repo for
imports, which means we can't make an isolated caching sandbox. We
should default this off
  • Loading branch information
TylerJang27 authored Sep 3, 2024
1 parent 2c48cf4 commit f0ed21f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion linters/pyright/plugin.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ lint:
success_codes: [0, 1]
read_output_from: stdout
batch: true
cache_results: true
cache_results: false
parser:
runtime: python
run: python3 ${plugin}/linters/pyright/pyright_to_sarif.py
Expand Down

0 comments on commit f0ed21f

Please sign in to comment.