-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 2.25 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
{
"name": "maxlint",
"displayName": "MaxLint",
"description": "Maximum automatic linting by running lebab, Prettier, and ESLint",
"version": "1.2.2",
"publisher": "yaksoy",
"engines": {
"vscode": "^1.25.0"
},
"categories": [
"Linters"
],
"keywords": [
"autofix",
"linting",
"lebab",
"prettier",
"eslint"
],
"repository": "https://github.com/torshid/MaxLint",
"activationEvents": [
"onCommand:extension.lintFile",
"onCommand:extension.disableLint"
],
"main": "./extension",
"contributes": {
"configuration": [
{
"title": "MaxLint",
"properties": {
"maxlint.lebab": {
"type": "string",
"default": "-t arrow,multi-var",
"description": "Lebab parameters",
"scope": "window"
},
"maxlint.lebab_": {
"type": "boolean",
"default": true,
"description": "Enable lebab",
"scope": "window"
},
"maxlint.prettier": {
"type": "string",
"default": "--arrow-parens avoid --print-width 120",
"description": "Prettier parameters",
"scope": "window"
},
"maxlint.prettier_": {
"type": "boolean",
"default": true,
"description": "Enable Prettier",
"scope": "window"
},
"maxlint.eslint": {
"type": "string",
"default": "",
"description": "ESLint parameters",
"scope": "window"
},
"maxlint.eslint_": {
"type": "boolean",
"default": true,
"description": "Enable ESLint",
"scope": "window"
}
}
}
],
"keybindings": [
{
"command": "extension.disableLint",
"key": "ctrl+shift+d ctrl+shift+l"
}
],
"commands": [
{
"command": "extension.lintFile",
"title": "Lint file"
},
{
"command": "extension.disableLint",
"title": "Disable linting for selection"
}
],
"menus": {
"editor/context": [
{
"command": "extension.disableLint",
"when": "editorHasSelection && resourceLangId == javascript",
"group": "Group@1"
}
]
}
},
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"typescript": "^2.6.1",
"vscode": "^1.1.21",
"eslint": "^4.11.0",
"@types/node": "^8.10.25",
"@types/mocha": "^2.2.42"
}
}