-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathllms.txt
More file actions
97 lines (85 loc) · 2.54 KB
/
llms.txt
File metadata and controls
97 lines (85 loc) · 2.54 KB
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
# Mojo Language Configuration
# Language name as it should appear in the UI
language = "Mojo"
# File extensions associated with this language
extensions = [".mojo", ".🔥"]
# Keywords for syntax highlighting
keywords = [
"fn", "struct", "var", "let", "alias", "return", "inout", "owned", "borrowed",
"raises", "with", "as", "if", "else", "for", "while", "break", "continue",
"import", "from", "as", "raise", "try", "except", "finally", "with", "pass"
]
# Built-in types
types = [
"Int", "Float", "String", "Bool", "Tensor", "List", "Dict", "Tuple",
"SIMD", "DType", "Pointer", "AnyType", "NoneType"
]
# Standard library modules
modules = [
"math", "random", "time", "os", "sys", "io", "collections", "algorithm",
"tensor", "parallel", "testing", "benchmark"
]
# Code intelligence settings
[code_intelligence]
# Whether to enable code completion
completion = true
# Whether to enable hover documentation
hover = true
# Whether to enable signature help
signature_help = true
# Whether to enable code actions
code_actions = true
# Whether to enable references
references = true
# Whether to enable document symbols
document_symbols = true
# Whether to enable workspace symbols
workspace_symbols = true
# Linter configuration
[linter]
enabled = true
# Path to the Mojo linter executable
command = "mojo-lint"
# Arguments to pass to the linter
args = ["--format=json"]
# Formatter configuration
[formatter]
enabled = true
# Path to the Mojo formatter executable
command = "mojo-format"
# Arguments to pass to the formatter
args = ["--in-place"]
# Debugger configuration
[debugger]
# Whether the debugger is supported for this language
supported = true
# Path to the debugger executable
command = "mojo-debug"
# Arguments to pass to the debugger
args = ["--port=5678"]
# Language server configuration
[language_server]
# Whether to use a language server for this language
enabled = true
# Command to start the language server
command = "mojo-language-server"
# Arguments to pass to the language server
args = ["--log-level=info"]
# Build system configuration
[build_system]
# Command to build the project
build_command = "mojo build"
# Command to run the project
run_command = "mojo run"
# Command to test the project
test_command = "mojo test"
# Documentation settings
[documentation]
# URL to the language documentation
reference_url = "https://docs.modular.com/mojo"
# Path to local documentation (if available)
local_path = "docs/mojo"
# Whether to enable documentation generation
generate_docs = true
# Command to generate documentation
docs_command = "mojo docs"