Skip to content

Commit 568e7ec

Browse files
committed
feat(lsp): add eslint and oxlint LSP servers to plugin
Add ESLint and Oxlint language server configurations to the Claude Code plugin for linting support.
1 parent 857c985 commit 568e7ec

1 file changed

Lines changed: 32 additions & 0 deletions

File tree

.claude-plugin/plugin.json

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,38 @@
7575
"extensionToLanguage": {
7676
".astro": "astro"
7777
}
78+
},
79+
"eslint": {
80+
"command": "bunx",
81+
"args": ["@pleaseai/code", "lsp-server", "eslint"],
82+
"extensionToLanguage": {
83+
".ts": "typescript",
84+
".tsx": "typescriptreact",
85+
".js": "javascript",
86+
".jsx": "javascriptreact",
87+
".mjs": "javascript",
88+
".cjs": "javascript",
89+
".mts": "typescript",
90+
".cts": "typescript",
91+
".vue": "vue"
92+
}
93+
},
94+
"oxlint": {
95+
"command": "bunx",
96+
"args": ["@pleaseai/code", "lsp-server", "oxlint"],
97+
"extensionToLanguage": {
98+
".ts": "typescript",
99+
".tsx": "typescriptreact",
100+
".js": "javascript",
101+
".jsx": "javascriptreact",
102+
".mjs": "javascript",
103+
".cjs": "javascript",
104+
".mts": "typescript",
105+
".cts": "typescript",
106+
".vue": "vue",
107+
".astro": "astro",
108+
".svelte": "svelte"
109+
}
78110
}
79111
}
80112
}

0 commit comments

Comments
 (0)