greptile 3.5.3 → 3.5.4
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/CHANGELOG.md +36 -0
- package/README.md +166 -34
- package/dist/greptile.js +355 -349
- package/package.json +1 -1
- package/settings-schema.json +11 -11
package/package.json
CHANGED
package/settings-schema.json
CHANGED
|
@@ -1,28 +1,28 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$id": "https://cdn.jsdelivr.net/npm/greptile@3/settings-schema.json",
|
|
3
3
|
"title": "Greptile CLI settings",
|
|
4
|
-
"description": "
|
|
4
|
+
"description": "Configure local Greptile CLI preferences stored on this machine. Manage these keys with `greptile settings`; organization settings are stored on the server and are not part of this file.",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"properties": {
|
|
7
7
|
"version": {
|
|
8
8
|
"type": "number",
|
|
9
|
-
"description": "
|
|
9
|
+
"description": "Identify the settings file format version. The CLI writes this value."
|
|
10
10
|
},
|
|
11
11
|
"color": {
|
|
12
12
|
"type": "boolean",
|
|
13
|
-
"description": "
|
|
13
|
+
"description": "Enable color in review output and errors by default. Set false for the same effect as passing --no-color to each review command."
|
|
14
14
|
},
|
|
15
15
|
"telemetry": {
|
|
16
16
|
"type": "boolean",
|
|
17
|
-
"description": "
|
|
17
|
+
"description": "Share CLI usage and reliability events. This overrides the first-run consent choice and never includes source code or repository contents."
|
|
18
18
|
},
|
|
19
19
|
"apiBaseUrl": {
|
|
20
20
|
"type": "string",
|
|
21
|
-
"description": "
|
|
21
|
+
"description": "Trust and use this self-hosted Greptile API origin for credential-bearing requests. Requires HTTPS with no path, query, or fragment; HTTP is allowed only for loopback development."
|
|
22
22
|
},
|
|
23
23
|
"webBaseUrl": {
|
|
24
24
|
"type": "string",
|
|
25
|
-
"description": "
|
|
25
|
+
"description": "Use this trusted self-hosted dashboard origin for browser handoffs and links. Requires HTTPS with no path, query, or fragment; HTTP is allowed only for loopback development."
|
|
26
26
|
},
|
|
27
27
|
"review": {
|
|
28
28
|
"type": "object",
|
|
@@ -30,28 +30,28 @@
|
|
|
30
30
|
"output": {
|
|
31
31
|
"type": "string",
|
|
32
32
|
"enum": ["auto", "text", "json"],
|
|
33
|
-
"description": "
|
|
33
|
+
"description": "Choose the default review output: auto uses the interactive layout on a terminal and text when piped; text is always plain; json emits the machine result object."
|
|
34
34
|
},
|
|
35
35
|
"layout": {
|
|
36
36
|
"type": "string",
|
|
37
37
|
"enum": ["comments", "diff"],
|
|
38
|
-
"description": "
|
|
38
|
+
"description": "Choose the default findings layout: comments renders comment cards; diff places findings beside the changed code."
|
|
39
39
|
},
|
|
40
40
|
"context": {
|
|
41
41
|
"type": "integer",
|
|
42
42
|
"minimum": 0,
|
|
43
43
|
"maximum": 60,
|
|
44
|
-
"description": "
|
|
44
|
+
"description": "Show this many nearby code lines around review findings by default. Must be an integer from 0 to 60."
|
|
45
45
|
},
|
|
46
46
|
"width": {
|
|
47
47
|
"type": "integer",
|
|
48
48
|
"minimum": 40,
|
|
49
49
|
"maximum": 240,
|
|
50
|
-
"description": "
|
|
50
|
+
"description": "Set the default review output width in columns. Must be an integer from 40 to 240; when unset, use the terminal width."
|
|
51
51
|
}
|
|
52
52
|
},
|
|
53
53
|
"additionalProperties": true,
|
|
54
|
-
"description": "
|
|
54
|
+
"description": "Set default output preferences for `greptile review`, `review show`, and compatible review commands."
|
|
55
55
|
}
|
|
56
56
|
},
|
|
57
57
|
"additionalProperties": true,
|