@yaegassy/coc-ty 0.3.0 → 0.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.serena/project.yml +22 -1
- package/package.json +11 -5
package/.serena/project.yml
CHANGED
|
@@ -79,6 +79,27 @@ excluded_tools: []
|
|
|
79
79
|
# initial prompt for the project. It will always be given to the LLM upon activating the project
|
|
80
80
|
# (contrary to the memories, which are loaded on demand).
|
|
81
81
|
initial_prompt: ""
|
|
82
|
-
|
|
82
|
+
# the name by which the project can be referenced within Serena
|
|
83
83
|
project_name: "coc-ty"
|
|
84
|
+
|
|
85
|
+
# list of tools to include that would otherwise be disabled (particularly optional tools that are disabled by default)
|
|
84
86
|
included_optional_tools: []
|
|
87
|
+
|
|
88
|
+
# list of mode names to that are always to be included in the set of active modes
|
|
89
|
+
# The full set of modes to be activated is base_modes + default_modes.
|
|
90
|
+
# If the setting is undefined, the base_modes from the global configuration (serena_config.yml) apply.
|
|
91
|
+
# Otherwise, this setting overrides the global configuration.
|
|
92
|
+
# Set this to [] to disable base modes for this project.
|
|
93
|
+
# Set this to a list of mode names to always include the respective modes for this project.
|
|
94
|
+
base_modes:
|
|
95
|
+
|
|
96
|
+
# list of mode names that are to be activated by default.
|
|
97
|
+
# The full set of modes to be activated is base_modes + default_modes.
|
|
98
|
+
# If the setting is undefined, the default_modes from the global configuration (serena_config.yml) apply.
|
|
99
|
+
# Otherwise, this overrides the setting from the global configuration (serena_config.yml).
|
|
100
|
+
# This setting can, in turn, be overridden by CLI parameters (--mode).
|
|
101
|
+
default_modes:
|
|
102
|
+
|
|
103
|
+
# fixed set of tools to use as the base tool set (if non-empty), replacing Serena's default set of tools.
|
|
104
|
+
# This cannot be combined with non-empty excluded_tools or included_optional_tools.
|
|
105
|
+
fixed_tools: []
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yaegassy/coc-ty",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.2",
|
|
4
4
|
"description": "coc.nvim extension with support for the ty type checker and language server.",
|
|
5
5
|
"author": "yaegassy <yosstools@gmail.com>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -119,7 +119,7 @@
|
|
|
119
119
|
"ty.configurationFile": {
|
|
120
120
|
"default": null,
|
|
121
121
|
"markdownDescription": "Path to a `ty.toml` configuration file.",
|
|
122
|
-
"scope": "
|
|
122
|
+
"scope": "resource",
|
|
123
123
|
"type": "string"
|
|
124
124
|
},
|
|
125
125
|
"ty.diagnosticMode": {
|
|
@@ -138,6 +138,12 @@
|
|
|
138
138
|
"scope": "resource",
|
|
139
139
|
"type": "string"
|
|
140
140
|
},
|
|
141
|
+
"ty.showSyntaxErrors": {
|
|
142
|
+
"default": true,
|
|
143
|
+
"markdownDescription": "Whether to show syntax error diagnostics.",
|
|
144
|
+
"scope": "window",
|
|
145
|
+
"type": "boolean"
|
|
146
|
+
},
|
|
141
147
|
"ty.importStrategy": {
|
|
142
148
|
"default": "fromEnvironment",
|
|
143
149
|
"markdownDescription": "Strategy for loading the `ty` executable. `fromEnvironment` picks up ty from the environment, falling back to the bundled version if needed. `useBundled` uses the version bundled with the extension.",
|
|
@@ -155,19 +161,19 @@
|
|
|
155
161
|
"ty.inlayHints.variableTypes": {
|
|
156
162
|
"default": true,
|
|
157
163
|
"markdownDescription": "Whether to enable inlay hints for variable types.",
|
|
158
|
-
"scope": "
|
|
164
|
+
"scope": "resource",
|
|
159
165
|
"type": "boolean"
|
|
160
166
|
},
|
|
161
167
|
"ty.inlayHints.callArgumentNames": {
|
|
162
168
|
"default": true,
|
|
163
169
|
"markdownDescription": "Whether to enable inlay hints for call argument names.",
|
|
164
|
-
"scope": "
|
|
170
|
+
"scope": "resource",
|
|
165
171
|
"type": "boolean"
|
|
166
172
|
},
|
|
167
173
|
"ty.completions.autoImport": {
|
|
168
174
|
"default": true,
|
|
169
175
|
"markdownDescription": "Whether to include auto-import code completions in ty.",
|
|
170
|
-
"scope": "
|
|
176
|
+
"scope": "resource",
|
|
171
177
|
"type": "boolean"
|
|
172
178
|
},
|
|
173
179
|
"ty.interpreter": {
|