This repository has been archived by the owner on Mar 18, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
188 lines (188 loc) · 5.73 KB
/
package.json
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
{
"name": "vscode-fecs-plugin",
"displayName": "vscode-fecs-plugin",
"description": "A better fecs extension for vscode.",
"icon": "images/fecs.png",
"version": "1.2.5",
"publisher": "l5oo00",
"repository": {
"type": "git",
"url": "https://github.com/l5oo00/vscode-fecs-plugin"
},
"engines": {
"vscode": "^1.12.0"
},
"categories": [
"Linters"
],
"activationEvents": [
"*"
],
"main": "./src/main.js",
"contributes": {
"configuration": {
"title": "vscode-fecs-plugin configuration",
"properties": {
"vscode-fecs-plugin.disableCheck": {
"default": false,
"title": "Disable check by default",
"type": "boolean",
"description": "Controls if disable check by default when vscode start/restart/reload"
},
"vscode-fecs-plugin.ignoreGlobalEslintDisalbe": {
"default": true,
"title": "Ignore `/* eslint-disalbe */` in js file",
"type": "boolean",
"description": "Controls if ignore `/* eslint-disalbe */` in js file"
},
"vscode-fecs-plugin.autoFormatOnSave": {
"default": false,
"title": "Auto format on save",
"type": "boolean",
"description": "Controls if auto format on save a document"
},
"vscode-fecs-plugin.en": {
"default": false,
"title": "Fecs use English in output",
"type": "boolean",
"description": "Controls if use English in output"
},
"vscode-fecs-plugin.level": {
"default": 0,
"title": "Fecs check level",
"type": "number",
"description": "Fecs check level. Value is 0 1 or 2"
},
"vscode-fecs-plugin.jsLikeExt": {
"default": [
"js",
"jsx",
"es",
"es6",
"ts",
"tsx"
],
"title": "Fecs files with these extensions",
"type": "array",
"description": "Specified 'js like' files extension that can use fecs."
},
"vscode-fecs-plugin.cssLikeExt": {
"default": [
"css",
"less"
],
"title": "Fecs files with these extensions",
"type": "array",
"description": "Specified 'css like' files extension that can use fecs."
},
"vscode-fecs-plugin.htmlLikeExt": {
"default": [
"html",
"htm",
"tpl"
],
"title": "Fecs files with these extensions",
"type": "array",
"description": "Specified 'html like' files extension that can use fecs."
},
"vscode-fecs-plugin.vueLikeExt": {
"default": [
"vue",
"san",
"atom.html",
"atom"
],
"title": "Fecs files with these extensions",
"type": "array",
"description": "Specified 'vue like' files extension that can use fecs."
},
"vscode-fecs-plugin.supportByGitDomainTest": {
"default": [],
"title": "Only support git repositories that remote url match this configuration item.",
"type": "array",
"description": "Only support git repositories that remote url match this configuration item."
},
"vscode-fecs-plugin.excludePaths": {
"default": [
"node_modules",
"third_party",
"output",
"dist"
],
"title": "Uncheck the files in these directory",
"type": "array",
"description": "Uncheck the files in these directory."
},
"vscode-fecs-plugin.excludeFileNameSuffixes": {
"default": [
".min.js",
".min.css",
".min.html"
],
"title": "Uncheck the files with these suffixes",
"type": "array",
"description": "Uncheck the files with these suffixes."
},
"vscode-fecs-plugin.searchUrl": {
"default": "https://www.google.com/search?q=${query}",
"title": "Search engine url",
"type": "string",
"description": "Search engine url"
}
}
},
"commands": [
{
"command": "vscode-fecs-plugin.format",
"title": "vscode-fecs-plugin: Format"
},
{
"command": "vscode-fecs-plugin.enable-check",
"title": "vscode-fecs-plugin: Enable check"
},
{
"command": "vscode-fecs-plugin.disable-check",
"title": "vscode-fecs-plugin: Disable check"
},
{
"command": "vscode-fecs-plugin.add-disable-rule-comment",
"title": "vscode-fecs-plugin: Add disable rule comments"
},
{
"command": "vscode-fecs-plugin.add-disable-rule-comment-for-entire-selection-block",
"title": "vscode-fecs-plugin: Add disable rule comments for entire selection block"
},
{
"command": "vscode-fecs-plugin.search-rule-in-browser",
"title": "vscode-fecs-plugin: Search rule in browser"
}
],
"keybindings": [
{
"command": "vscode-fecs-plugin.format",
"key": "cmd+shift+r"
}
]
},
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"vscode": "^1.0.0",
"mocha": "^2.3.3",
"@types/node": "^6.0.40",
"@types/mocha": "^2.2.32"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^3.4.0",
"@typescript-eslint/parser": "^3.4.0",
"ajv": "^5.0.0",
"eslint": "^5.16.0",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.22.0",
"fecs": "^1.6.4",
"typescript": "^3.9.5",
"vinyl": "^2.2.0"
}
}