forked from sohamkamani/code-eol
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
130 lines (130 loc) · 4.54 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
{
"name": "code-eol",
"displayName": "code-eol 2022 (Line Endings)",
"description": "Displays line endings like Atom/Notepad",
"version": "1.0.12",
"icon": "icon.png",
"publisher": "jeff-hykin",
"repository": {
"url": "https://github.com/jeff-hykin/code-eol"
},
"license": "MIT",
"engines": {
"vscode": "^1.15.0"
},
"keywords": [
"code",
"eol",
"line endings",
"line ending",
"line",
"endings",
"lf",
"crlf",
"render crlf",
"end-of-line"
],
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"main": "./dist/index",
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install",
"publish": "vsce package && vsce publish && rm *.vsix",
"build": "parcel bulid index.js -t electron"
},
"devDependencies": {
"@types/node": "7.0.4",
"vscode": "^1.1.5"
},
"dependencies": {
"tmp": "^0.0.29",
"vsce": "^1.40.0"
},
"contributes": {
"configuration": [
{
"type": "object",
"title": "code-eol Configuration",
"properties": {
"code-eol.toggleWithWhiteSpace": {
"type": [
"boolean"
],
"default": true,
"description": "If true, then showing/hiding whitespace in VS Code will also show/hide the line endings"
},
"code-eol.validLineEnding": {
"type": [
"string",
"null"
],
"default": null,
"description": "Set this to either CRLF or LF, and then non-CRLF (or non-LF) will be highlighted as an error to notify you of a non-standard line ending"
},
"code-eol.style": {
"type": [
"object"
],
"default": {},
"description": "The CSS style (color, opacity, etc) of the line ending characters. Ex: \"code-eol.style\" { \"color\" : \"#2a3f47\", \"opacity\" : 1.0 }"
},
"code-eol.newlineCharacter": {
"type": [
"string",
"null"
],
"default": "¬",
"description": "Which character is shown for newline-ending ex:¬"
},
"code-eol.newlineCharacterStyle": {
"type": [
"object"
],
"default": {},
"description": "You can set the style (color, opacity, etc) for this ending specifically"
},
"code-eol.returnCharacter": {
"type": [
"string",
"null"
],
"default": "↵",
"description": "Which character is shown for carriage-return-ending ex:¬"
},
"code-eol.returnCharacterStyle": {
"type": [
"object"
],
"default": {},
"description": "You can set the style (color, opacity, etc) for this ending specifically"
},
"code-eol.crlfCharacter": {
"type": [
"string",
"null"
],
"default": "←",
"description": "Which character is shown for crlf-ending ex:¬"
},
"code-eol.crlfCharacterStyle": {
"type": [
"object"
],
"default": {},
"description": "You can set the style (color, opacity, etc) for this ending specifically"
}
}
}
],
"commands": [
{
"command": "extension.toggleLineEndings",
"title": "Toggle (Show/Hide) Line Endings"
}
]
}
}