-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 2.96 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 2.96 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "rslint",
"displayName": "Rslint",
"description": "Language support for Rslint",
"version": "0.3.4",
"icon": "images/icon.png",
"private": true,
"publisher": "rstack",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/web-infra-dev/rslint"
},
"categories": [
"Linters"
],
"keywords": [
"rslint",
"linter",
"typescript",
"go"
],
"engines": {
"vscode": "^1.115.0"
},
"main": "./dist/main.js",
"activationEvents": [
"onLanguage:typescript",
"onLanguage:typescriptreact",
"onLanguage:javascript",
"onLanguage:javascriptreact"
],
"contributes": {
"configuration": {
"type": "object",
"title": "Rslint",
"properties": {
"rslint.enable": {
"order": 0,
"type": "boolean",
"default": true,
"description": "Enable/disable rslint"
},
"rslint.binPath": {
"order": 1,
"type": "string",
"enum": [
"local",
"built-in",
"custom"
],
"default": "built-in",
"markdownEnumDescriptions": [
"Use workspace node_modules Rslint binary (may have version incompatibility with extension)",
"Use extension's built-in Rslint binary (may differ from local @rslint/core diagnostics)",
"Customize the path to the Rslint binary, this is useful if you have a global installation of Rslint or if you want to use a specific version of Rslint"
],
"description": "Path to Rslint executable binary"
},
"rslint.customBinPath": {
"order": 2,
"type": "string",
"description": "Custom path to Rslint executable. Only used when `rslint.binPath` is set to `custom`. Requires reloading VS Code to take effect."
},
"rslint.trace.server": {
"order": 3,
"type": "string",
"enum": [
"off",
"messages",
"verbose"
],
"default": "off",
"description": "Traces the communication between VS Code and the language server"
}
}
}
},
"scripts": {
"build": "node scripts/build.js",
"watch": "node scripts/build.js --watch",
"package": "vsce package",
"test": "tsgo -p tsconfig.spec.json && node .vscode-test-out/runTest.js"
},
"devDependencies": {
"@rslint/core": "workspace:*",
"@types/mocha": "10.0.9",
"@types/node": "24.0.14",
"@types/vscode": "^1.115.0",
"@vscode/test-cli": "0.0.11",
"@vscode/test-electron": "2.5.2",
"@vscode/vsce": "3.7.1",
"esbuild": "0.27.0",
"fast-glob": "3.3.3",
"mocha": "10.8.2",
"ovsx": "^0.10.5",
"rimraf": "6.1.2",
"typescript": "^5.9.3",
"@typescript/native-preview": "7.0.0-dev.20250904.1",
"vscode-languageclient": "^9.0.1",
"vscode-languageserver": "^9.0.1",
"vscode-languageserver-textdocument": "^1.0.12"
},
"files": []
}