Skip to repository content

tenant.openagents/omega

No repository description is available.

OpenAgents Git authority 2026-07-27T22:43:22.613Z Public web read
NIP-34 coordinate30617:7649603503856e5148d571eac2766b288a8ff1e9e35d380337a1d2b0015b4f92:omega
MaintainersHidden in public view
References2 branches · 1 tag
Read-only clonegit clone https://openagents.com/git/tenant.openagents/omega.git
Browse files

typos.toml

113 lines · 4.1 KB · toml
1[files]
2ignore-files = true
3ignore-hidden = false
4extend-exclude = [
5    ".git/",
6
7    # Typewriter model names used for agent branch names aren't typos.
8    "crates/agent_ui/src/branch_names.rs",
9
10    # Contributor names aren't typos.
11    ".mailmap",
12
13    # File suffixes aren't typos.
14    "crates/theme/src/icon_theme.rs",
15    "crates/extensions_ui/src/extension_suggest.rs",
16
17    # Some mock data is flagged as typos.
18    "crates/assistant_tools/src/web_search_tool.rs",
19
20    # Suppress false positives in database schema.
21    "crates/collab/migrations/20251208000000_test_schema.sql",
22
23    # Vendored JSON schemas from SchemaStore.
24    "crates/json_schema_store/src/schemas/",
25
26    # Not our typos.
27    "crates/livekit_api/",
28    # Vim makes heavy use of partial typing tables.
29    "crates/vim/",
30    # Editor, file finder, and fuzzy matching rely on partial typing and custom in-string syntax.
31    "crates/file_finder/src/file_finder_tests.rs",
32    "crates/fuzzy_nucleo/src/strings.rs",
33    "crates/editor/src/editor_tests.rs",
34    "crates/editor/src/edit_prediction_tests.rs",
35    # There are some names in the test data that are incorrectly flagged as typos.
36    "crates/git/test_data/blame_incremental_complex",
37    "crates/git/test_data/golden/blame_incremental_complex.json",
38    # We have some base64-encoded data that is incorrectly being flagged.
39    "crates/rpc/src/auth.rs",
40    # glsl isn't recognized by this tool.
41    "extensions/glsl/languages/glsl/",
42    # Protols is the name of the language server.
43    "extensions/proto/extension.toml",
44    "extensions/proto/src/language_servers/protols.rs",
45    # Windows likes its abbreviations.
46    "crates/gpui_windows/src/directx_renderer.rs",
47    "crates/gpui_windows/src/events.rs",
48    "crates/gpui_windows/src/direct_write.rs",
49    "crates/gpui_windows/src/window.rs",
50    # Some typos in the base mdBook CSS.
51    "docs/theme/css/",
52    # Automatically generated JS.
53    "docs/theme/c15t@*.js",
54    # Spellcheck triggers on `|Fixe[sd]|` regex part.
55    "script/danger/dangerfile.ts",
56    # File type extensions are not typos
57    "crates/zed/resources/windows/zed.iss",
58    # typos-cli doesn't understand our `vˇariable` markup
59    "crates/editor/src/hover_links.rs",
60    # typos-cli doesn't understand `setis` is intentional test case
61    "crates/editor/src/code_completion_tests.rs",
62    # Linux repository structure is not a valid text, hence we should not check it for typos
63    "crates/project_panel/benches/linux_repo_snapshot.txt",
64    # Some multibuffer test cases have word fragments that register as typos
65    "crates/multi_buffer/src/multi_buffer_tests.rs",
66    # Macos apis
67    "crates/gpui_macos/src/dispatcher.rs",
68    # Tests contain partially incomplete words (by design)
69    "crates/edit_prediction_cli/src/split_commit.rs",
70    "crates/edit_prediction_metrics/src/kept_rate.rs",
71    # Eval examples contain intentionally partial words (e.g. "secur" for "secure")
72    "crates/edit_prediction_cli/evals/",
73    # Tests contain `baˇr` that cause `"ba" should be "by" or "be".`-like false-positives
74    "crates/editor/src/document_symbols.rs",
75]
76
77[default]
78extend-ignore-re = [
79    # PNG is a file format, not a typo
80    "PNG",
81    'cl\[ist]',
82    '\[lan\]guage',
83    '"ba"',
84    "doas",
85    # ProtoLS crate with tree-sitter Protobuf grammar.
86    "protols",
87    # x11rb SelectionNotifyEvent struct field
88    "requestor",
89    # macOS version
90    "Big Sur",
91    # Not an actual typo but an intentionally invalid color, in `color_extractor`
92    "#fof",
93    # Stripped version of reserved keyword `type`
94    "typ",
95    # AMD GPU Services
96    "ags",
97    # AMD GPU Services
98    "AGS",
99    # "noet" is a vim variable (ideally to ignore locally)
100    "noet",
101    # Yarn Plug'n'Play
102    "PnP",
103    # `image` crate method: Delay::from_numer_denom_ms
104    "numer",
105    # Abbreviation for foreignObject in mermaid SVG processing
106    "fo",
107    # Mermaid CSS class name for state diagram composites
108    "composit",
109    # Used in truncating tests to ensure byte-length vs char like in café
110    "caf…"
111]
112check-filename = true
113
Served at tenant.openagents/omega Member data and write actions are omitted.