-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.17 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
{
"name": "insert-use-strict",
"displayName": "Insert use strict",
"description": "Insert \"use strict\" to all JavaScript files accross your workspace.",
"version": "1.1.7",
"publisher": "crizant",
"license": "MIT",
"homepage": "https://github.com/crizant/insert-use-strict",
"bugs": {
"url": "https://github.com/crizant/insert-use-strict/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/crizant/insert-use-strict.git"
},
"engines": {
"vscode": "^1.81.0"
},
"categories": [
"Programming Languages",
"Snippets"
],
"icon": "images/logo.jpg",
"keywords": [
"Node.js",
"JavaScript",
"use strict",
"strict mode"
],
"activationEvents": [
"onLanguage:javascript",
"onLanguage:typescript"
],
"main": "./extension",
"contributes": {
"commands": [
{
"command": "extension.insertUseStrict",
"title": "Insert \"use strict\" in workspace"
}
],
"configuration": {
"type": "object",
"title": "Insert Use Strict configuration",
"properties": {
"insertUseStrict.useDoubleQuote": {
"type": "boolean",
"default": false,
"description": "If set to true, use double quote (`\"`). Otherwise use single quote (`'`)."
},
"insertUseStrict.addTrailingSemicolon": {
"type": "boolean",
"default": false,
"description": "If set to true, add a semicolon (`;`) at the end of the statement."
},
"insertUseStrict.autoSave": {
"type": "boolean",
"default": true,
"description": "If set to true, save the documents after editing."
},
"insertUseStrict.globPattern": {
"type": "string",
"default": "**/*.{js,ts}",
"description": "The glob pattern of files to apply changes."
},
"insertUseStrict.autoApplyToNewFiles": {
"type": "boolean",
"default": true,
"description": "If set to true, apply changes when new files are created."
}
}
}
},
"devDependencies": {
"@types/vscode": "^1.81.0"
},
"dependencies": {
"minimatch": "^9.0.3"
}
}