-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.18 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.18 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
{
"name": "code-standard-selector",
"displayName": "Code Standard Selector",
"description": "Easily swap coding standards for PHP projects.",
"version": "1.1.0",
"publisher": "tommcfarlin",
"icon": "images/icon.png",
"engines": {
"vscode": "^1.75.0"
},
"main": "./src/extension.js",
"activationEvents": [
"onLanguage:php",
"workspaceContains:**/*.php"
],
"contributes": {
"commands": [
{
"command": "extension.selectCodeStandard",
"title": "Select Code Standard"
}
],
"keybindings": [
{
"command": "extension.selectCodeStandard",
"key": "ctrl+alt+s",
"win": "ctrl+alt+s",
"linux": "ctrl+alt+s",
"mac": "cmd+alt+s",
"when": "editorLangId == php"
}
],
"configuration": {
"title": "PHP Code Standard Selector",
"properties": {
"phpCodeStandardSelector.standard": {
"type": "string",
"default": "PSR12",
"description": "Selected PHP coding standard"
},
"phpCodeStandardSelector.executablePathCS": {
"type": "string",
"default": "/usr/local/bin/phpcs",
"description": "Path to PHPCS executable"
}
}
}
},
"scripts": {
"test": "node ./test/runTest.js"
},
"devDependencies": {
"@vscode/test-electron": "^2.4.1",
"glob": "^7.2.0",
"mocha": "^10.2.0"
},
"repository": {
"type": "git",
"url": "https://github.com/tommcfarlin/code-standard-selector"
},
"bugs": {
"url": "https://github.com/tommcfarlin/code-standard-selector/issues"
},
"galleryBanner": {
"color": "#262a36",
"theme": "dark"
},
"categories": [
"Formatters",
"Linters",
"Programming Languages"
],
"keywords": [
"php",
"phpcs",
"coding standards",
"psr-12",
"wordpress"
]
}