From 88991f7df1d76c8fd5b8dba9f7be3ba87a2c4c43 Mon Sep 17 00:00:00 2001 From: Yeganathan S <63534555+skwowet@users.noreply.github.com> Date: Mon, 23 Mar 2026 14:39:05 +0530 Subject: [PATCH 1/2] chore: update .gitignore and add Claude settings file Signed-off-by: Yeganathan S <63534555+skwowet@users.noreply.github.com> --- .claude/settings.json | 5 +++++ .gitignore | 4 ---- 2 files changed, 5 insertions(+), 4 deletions(-) create mode 100644 .claude/settings.json diff --git a/.claude/settings.json b/.claude/settings.json new file mode 100644 index 0000000000..0cbf4db508 --- /dev/null +++ b/.claude/settings.json @@ -0,0 +1,5 @@ +{ + "enabledPlugins": { + "typescript-lsp@claude-plugins-official": true + } +} diff --git a/.gitignore b/.gitignore index 54edc4f658..30715a7f85 100644 --- a/.gitignore +++ b/.gitignore @@ -196,10 +196,6 @@ services/libs/tinybird/.diff_tmp # custom cursor rules .cursor/rules/*.local.mdc -# claude code rules -CLAUDE.md -.claude - # git integration test repositories & output services/apps/git_integration/src/test/repos/ services/apps/git_integration/src/test/outputs/custom/ From 0945ac6e623e961df0258a7e3739d7d840e564f1 Mon Sep 17 00:00:00 2001 From: Yeganathan S <63534555+skwowet@users.noreply.github.com> Date: Mon, 23 Mar 2026 15:22:59 +0530 Subject: [PATCH 2/2] chore: add pyright-lsp for py Signed-off-by: Yeganathan S <63534555+skwowet@users.noreply.github.com> --- .claude/settings.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.claude/settings.json b/.claude/settings.json index 0cbf4db508..fa7f612a80 100644 --- a/.claude/settings.json +++ b/.claude/settings.json @@ -1,5 +1,6 @@ { "enabledPlugins": { - "typescript-lsp@claude-plugins-official": true + "typescript-lsp@claude-plugins-official": true, + "pyright-lsp@claude-plugins-official": true } }