vscode-eslint 0.0.1 → 0.0.2
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.
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: vscode-eslint-agent
|
|
3
|
+
description: Specialized agent that uses the vscode-eslint LSP server for advanced linting and code analysis.
|
|
4
|
+
kind: local
|
|
5
|
+
# Note: This binary currently speaks LSP. If using as an MCP server, a bridge may be required.
|
|
6
|
+
mcpServers:
|
|
7
|
+
eslint-lsp:
|
|
8
|
+
command: "node"
|
|
9
|
+
args: ["./node_modules/.bin/vscode-eslint", "--stdio"]
|
|
10
|
+
tools:
|
|
11
|
+
- mcp_eslint-lsp_*
|
|
12
|
+
---
|
|
13
|
+
|
|
14
|
+
# VSCode ESLint Agent
|
|
15
|
+
|
|
16
|
+
You are an expert at JavaScript/TypeScript linting using the `vscode-eslint` LSP server.
|
|
17
|
+
Your role is to:
|
|
18
|
+
1. Analyze code for style and correctness issues.
|
|
19
|
+
2. Provide precise fixes for identified problems.
|
|
20
|
+
3. Help the user understand complex ESLint configurations and rules.
|
|
21
|
+
|
|
22
|
+
You have access to the `vscode-eslint` binary via an MCP-to-LSP bridge (assumed).
|
|
23
|
+
If you cannot communicate with the server, report the error to the user.
|
package/bin/vscode-eslint.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "vscode-eslint",
|
|
3
3
|
"displayName": "ESLint",
|
|
4
4
|
"description": "Integrates ESLint JavaScript into VS Code.",
|
|
5
|
-
"version": "0.0.
|
|
5
|
+
"version": "0.0.2",
|
|
6
6
|
"author": "Microsoft Corporation",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"repository": {
|
|
@@ -13,6 +13,9 @@
|
|
|
13
13
|
"url": "https://github.com/shubham151/vscode-eslint/issues"
|
|
14
14
|
},
|
|
15
15
|
"publisher": "dbaeumer",
|
|
16
|
+
"bin": {
|
|
17
|
+
"vscode-eslint": "bin/vscode-eslint.js"
|
|
18
|
+
},
|
|
16
19
|
"icon": "eslint_icon.png",
|
|
17
20
|
"categories": [
|
|
18
21
|
"Programming Languages",
|