@yaegassy/coc-ty 0.3.1 → 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 +5 -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": {
|
|
@@ -161,19 +161,19 @@
|
|
|
161
161
|
"ty.inlayHints.variableTypes": {
|
|
162
162
|
"default": true,
|
|
163
163
|
"markdownDescription": "Whether to enable inlay hints for variable types.",
|
|
164
|
-
"scope": "
|
|
164
|
+
"scope": "resource",
|
|
165
165
|
"type": "boolean"
|
|
166
166
|
},
|
|
167
167
|
"ty.inlayHints.callArgumentNames": {
|
|
168
168
|
"default": true,
|
|
169
169
|
"markdownDescription": "Whether to enable inlay hints for call argument names.",
|
|
170
|
-
"scope": "
|
|
170
|
+
"scope": "resource",
|
|
171
171
|
"type": "boolean"
|
|
172
172
|
},
|
|
173
173
|
"ty.completions.autoImport": {
|
|
174
174
|
"default": true,
|
|
175
175
|
"markdownDescription": "Whether to include auto-import code completions in ty.",
|
|
176
|
-
"scope": "
|
|
176
|
+
"scope": "resource",
|
|
177
177
|
"type": "boolean"
|
|
178
178
|
},
|
|
179
179
|
"ty.interpreter": {
|