This repository has been archived by the owner on Apr 22, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
74 lines (74 loc) · 2.02 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
{
"name": "missinglineendoffile",
"displayName": "Blank Line at the End of File",
"description": "This extension will add a blank line at the end of your files when you save them!",
"version": "0.3.2",
"publisher": "riccardoNovaglia",
"repository": {
"type": "git",
"url": "https://github.com/riccardoNovaglia/vsCodeBlankLine.git"
},
"galleryBanner": {
"color": "#BED8FF"
},
"icon": "images/newLine.png",
"engines": {
"vscode": "^0.10.1"
},
"categories": [
"Linters",
"Other"
],
"activationEvents": [
"onCommand:extension.checkBlankLine",
"onCommand:workbench.action.files.save"
],
"main": "./out/src/extension",
"contributes": {
"commands": [
{
"command": "extension.checkBlankLine",
"title": "Check for Blank line at End of File"
}
],
"configuration": {
"type": "object",
"title": "Flag to indicate whether to display an message when a line is added to your file",
"properties": {
"blankLine.showMessage": {
"type": "boolean",
"default": false,
"description": "Controls whether a message is displayed each time a line is added to your file"
},
"blankLine.removeExtraLines": {
"type": "boolean",
"default": true,
"description": "Controls whether to remove extra blank lines or not"
},
"blankLine.fileExtensionsToIgnore": {
"type": "Array<String>",
"default": [
".conf",
".json",
".liquid"
],
"description": "List of file extensions to which blank lines should not be added."
}
}
}
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"typescript": "^2.0.3",
"vscode": "1.1.30",
"mocha": "6.0.2",
"sinon": "7.2.4",
"@types/node": "^6.0.40",
"@types/mocha": "^2.2.32"
},
"dependencies": {}
}