mirror of
https://github.com/cline/cline.git
synced 2026-09-19 02:05:44 +08:00
* showTextDocument host bridge * format fix * sjf review cleanups * prefer paths over URI based on chats with sjf * also document_uri -> document_path * remove unused metadata import --------- Co-authored-by: Andrei Edell <andrei@nugbase.com>
42 lines
719 B
Plaintext
42 lines
719 B
Plaintext
out
|
|
dist
|
|
dist-standalone
|
|
node_modules
|
|
tmp
|
|
.vscode-test/
|
|
*.vsix
|
|
|
|
.DS_Store
|
|
.idea
|
|
|
|
pnpm-lock.yaml
|
|
|
|
.clineignore
|
|
.venv
|
|
.actrc
|
|
|
|
# Ignore coverage directories and files
|
|
coverage
|
|
# But don't ignore the coverage scripts in .github/scripts/
|
|
!.github/scripts/coverage/
|
|
|
|
*evals.env
|
|
|
|
# Generated files
|
|
src/generated/
|
|
# Core
|
|
src/core/controller/*/methods.ts
|
|
src/core/controller/*/index.ts
|
|
src/core/controller/grpc-service-config.ts
|
|
# Shared
|
|
src/shared/proto/*.ts
|
|
src/shared/proto/host/*.ts
|
|
# Webview
|
|
webview-ui/src/services/grpc-client.ts
|
|
# Host bridge
|
|
src/hosts/vscode/*/methods.ts
|
|
src/hosts/vscode/*/index.ts
|
|
src/hosts/vscode/client/host-grpc-client.ts
|
|
src/hosts/vscode/host-grpc-service-config.ts
|
|
src/standalone/server-setup.ts
|