-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
147 lines (147 loc) · 3.48 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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
{
"name": "autocomplete-go",
"description": "An autocomplete-plus provider for the Go language that uses gocode to provide suggestions.",
"keywords": [
"go",
"golang",
"gocode",
"autocomplete",
"autocomplete-plus"
],
"main": "./lib/main",
"version": "1.3.0",
"repository": "https://github.com/joefitzgerald/autocomplete-go",
"license": "Apache-2.0",
"engines": {
"atom": ">=1.5.3 <2.0.0"
},
"author": "Joe Fitzgerald <[email protected]> (http://github.com/joefitzgerald)",
"homepage": "https://atom.io/packages/autocomplete-go",
"bugs": {
"url": "https://github.com/joefitzgerald/autocomplete-go/issues"
},
"dependencies": {
"atom-package-deps": "4.2.0",
"lodash": "^4.16.2"
},
"devDependencies": {
"standard": "^8.3.0"
},
"package-deps": [
"go-config",
"go-get"
],
"consumedServices": {
"go-config": {
"versions": {
"1.0.0": "consumeGoconfig"
}
},
"go-get": {
"versions": {
"2.0.0": "consumeGoget"
}
}
},
"providedServices": {
"autocomplete.provider": {
"versions": {
"2.0.0": "provide"
}
}
},
"configSchema": {
"scopeBlacklist": {
"title": "Scope Blacklist",
"description": "Suggestions will not be shown when the cursor is inside the following comma-delimited scope(s).",
"type": "string",
"default": ".source.go .comment, .source.go .constant.numeric, .source.go .string.quoted",
"order": 1
},
"suppressBuiltinAutocompleteProvider": {
"title": "Suppress The Provider Built-In To autocomplete-plus",
"description": "Suppress the provider built-in to the autocomplete-plus package when editing .go files.",
"type": "boolean",
"default": true,
"order": 2
},
"suppressActivationForCharacters": {
"title": "Suppress Activation For Characters",
"description": "Suggestions will not be provided when you type one of these characters.",
"type": "array",
"default": [
"comma",
"newline",
"space",
"tab",
"/",
"\\",
"(",
")",
"\"",
"'",
":",
";",
"<",
">",
"~",
"!",
"@",
"#",
"$",
"%",
"^",
"&",
"*",
"|",
"+",
"=",
"[",
"]",
"{",
"}",
"`",
"~",
"?",
"-"
],
"items": {
"type": "string"
},
"order": 3
},
"snippetMode": {
"title": "Snippet Mode",
"description": "When inserting suggestions for funcs, generate a snippet that includes parenthesis only (none), argument name (name), or argument name and type (nameAndType).",
"type": "string",
"default": "name",
"enum": [
"name",
"nameAndType",
"none"
],
"order": 4
},
"proposeBuiltins": {
"title": "Propose Builtins",
"description": "Add built-in types, functions and constants to an autocompletion proposals. Default: true.",
"type": "boolean",
"default": true,
"order": 5
},
"unimportedPackages": {
"title": "Unimported Packages",
"description": "Provide suggestions for unimported packages. Default: true.",
"type": "boolean",
"default": true,
"order": 6
}
},
"standard": {
"globals": [
"advanceClock",
"atom",
"waitsForPromise"
]
}
}