pi-lens 3.8.43 → 3.8.45
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +2425 -2311
- package/README.md +70 -42
- package/clients/ast-grep-client.ts +54 -22
- package/clients/cache/rule-cache.ts +2 -1
- package/clients/dependency-checker.ts +82 -39
- package/clients/dispatch/dispatcher.ts +49 -0
- package/clients/dispatch/integration.ts +75 -2
- package/clients/dispatch/plan.ts +10 -2
- package/clients/dispatch/runners/biome.ts +1 -1
- package/clients/dispatch/runners/cpp-check.ts +93 -17
- package/clients/dispatch/runners/dart-analyze.ts +17 -11
- package/clients/dispatch/runners/detekt.ts +4 -1
- package/clients/dispatch/runners/dotnet-build.ts +93 -8
- package/clients/dispatch/runners/fish-indent.ts +83 -0
- package/clients/dispatch/runners/gleam-check.ts +4 -2
- package/clients/dispatch/runners/go-vet.ts +8 -8
- package/clients/dispatch/runners/hadolint.ts +1 -1
- package/clients/dispatch/runners/htmlhint.ts +1 -1
- package/clients/dispatch/runners/index.ts +6 -0
- package/clients/dispatch/runners/javac.ts +99 -94
- package/clients/dispatch/runners/ktlint.ts +1 -1
- package/clients/dispatch/runners/markdownlint.ts +88 -88
- package/clients/dispatch/runners/mypy.ts +88 -88
- package/clients/dispatch/runners/php-lint.ts +82 -79
- package/clients/dispatch/runners/phpstan.ts +4 -3
- package/clients/dispatch/runners/prisma-validate.ts +8 -5
- package/clients/dispatch/runners/psscriptanalyzer.ts +22 -3
- package/clients/dispatch/runners/pyright.ts +1 -1
- package/clients/dispatch/runners/python-slop.ts +4 -5
- package/clients/dispatch/runners/rust-clippy.ts +9 -9
- package/clients/dispatch/runners/semgrep.ts +3 -1
- package/clients/dispatch/runners/shellcheck.ts +195 -195
- package/clients/dispatch/runners/shfmt.ts +100 -100
- package/clients/dispatch/runners/spellcheck.ts +145 -143
- package/clients/dispatch/runners/sqlfluff.ts +108 -108
- package/clients/dispatch/runners/stylelint.ts +3 -1
- package/clients/dispatch/runners/swiftlint.ts +129 -0
- package/clients/dispatch/runners/taplo.ts +1 -1
- package/clients/dispatch/runners/tflint.ts +1 -1
- package/clients/dispatch/runners/tree-sitter.ts +164 -54
- package/clients/dispatch/runners/utils/runner-helpers.ts +172 -46
- package/clients/dispatch/runners/vale.ts +175 -0
- package/clients/dispatch/runners/yamllint.ts +92 -92
- package/clients/dispatch/runners/zig-check.ts +1 -1
- package/clients/dispatch/types.ts +3 -2
- package/clients/feature-hints.ts +79 -0
- package/clients/file-kinds.ts +7 -1
- package/clients/file-role.ts +7 -0
- package/clients/formatters.ts +6 -3
- package/clients/go-client.ts +1 -1
- package/clients/installer/index.ts +169 -40
- package/clients/jscpd-client.ts +59 -60
- package/clients/knip-client.ts +437 -357
- package/clients/language-policy.ts +19 -3
- package/clients/language-profile.ts +22 -0
- package/clients/latency-logger.ts +2 -0
- package/clients/lens-config.ts +94 -0
- package/clients/lsp/client.ts +66 -7
- package/clients/lsp/index.ts +128 -16
- package/clients/lsp/server-strategies.ts +6 -3
- package/clients/lsp/server.ts +208 -16
- package/clients/read-expansion.ts +72 -6
- package/clients/read-guard.ts +148 -17
- package/clients/review-graph/builder.ts +322 -37
- package/clients/review-graph/query.ts +55 -10
- package/clients/review-graph/service.ts +12 -8
- package/clients/review-graph/workspace-modules.ts +482 -0
- package/clients/runtime-session.ts +30 -31
- package/clients/runtime-turn.ts +129 -72
- package/clients/rust-client.ts +1 -1
- package/clients/safe-spawn.ts +24 -14
- package/clients/sg-runner.ts +136 -86
- package/clients/source-groups.ts +140 -0
- package/clients/test-runner-client.ts +37 -2
- package/clients/tool-availability.ts +1 -1
- package/clients/tool-policy.ts +46 -3
- package/clients/tree-sitter-client.ts +232 -4
- package/clients/tree-sitter-query-loader.ts +39 -8
- package/clients/tree-sitter-symbol-extractor.ts +54 -0
- package/commands/booboo.ts +36 -10
- package/index.ts +39 -20
- package/package.json +3 -1
- package/rules/tree-sitter-queries/c/hardcoded-secrets.yml +55 -0
- package/rules/tree-sitter-queries/c/memset-sensitive-data.yml +50 -0
- package/rules/tree-sitter-queries/c/no-bit-fields.yml +48 -0
- package/rules/tree-sitter-queries/c/no-octal-literals.yml +46 -0
- package/rules/tree-sitter-queries/c/no-pointer-arithmetic-array-access.yml +50 -0
- package/rules/tree-sitter-queries/c/no-redundant-pointer-ops.yml +57 -0
- package/rules/tree-sitter-queries/c/no-reserved-identifiers.yml +49 -0
- package/rules/tree-sitter-queries/c/no-stdlib-name-as-id.yml +53 -0
- package/rules/tree-sitter-queries/c/non-case-label-in-switch.yml +56 -0
- package/rules/tree-sitter-queries/c/noreturn-returns.yml +60 -0
- package/rules/tree-sitter-queries/python/python-sql-injection.yml +3 -2
- package/rules/tree-sitter-queries/python/return-in-generator.yml +5 -5
- package/scripts/analyze-pi-lens-logs.mjs +1015 -0
- package/skills/ast-grep/SKILL.md +17 -14
- package/skills/lsp-navigation/SKILL.md +45 -30
- package/tools/ast-grep-replace.js +6 -1
- package/tools/ast-grep-replace.ts +6 -1
- package/tools/ast-grep-search.js +63 -6
- package/tools/ast-grep-search.ts +76 -8
- package/tools/lsp-diagnostics.js +510 -0
- package/tools/lsp-diagnostics.ts +706 -0
- package/tools/lsp-navigation.js +128 -8
- package/tools/lsp-navigation.ts +193 -10
- package/tools/shared.js +3 -2
- package/tools/shared.ts +3 -2
- /package/rules/tree-sitter-queries/{c → c-disabled}/case-range-multiple-values.yml +0 -0
There are too many changes on this page to be displayed.
The amount of changes on this page would crash your brower.
You can still verify the content by downloading the package file manually.