Skip to content

Commit 8cb4536

Browse files
More updates
1 parent b4e7c43 commit 8cb4536

5 files changed

Lines changed: 17 additions & 5 deletions

File tree

.luarc.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,10 @@
22
"runtime.version": "Lua 5.1",
33
"diagnostics.ignoredFiles": "Disable",
44
"diagnostics.globals": ["vim", "talon", "it", "describe"],
5-
"workspace.ignoreDir": ["resources/playground/lua/", ".luarocks", ".lua", "dist"]
5+
"workspace.ignoreDir": [
6+
"resources/playground/lua/",
7+
".luarocks",
8+
".lua",
9+
"dist"
10+
]
611
}

AGENTS.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
- Main extension code is in `/packages/app-vscode/`
1212
- Engine code is in `/packages/lib-engine/`
13-
- Tests are in `resources/fixtures/`
13+
- Tests are in `resources/fixtures/recorded` and `resources/fixtures/scopes`
1414
- Language-specific parsing is defined in the `resources/queries/*.scm` files
1515

1616
## Build and Test
@@ -33,7 +33,7 @@ When documenting actions or modifiers:
3333
## Implementation Notes
3434

3535
- Many actions (`drop`, `float`, `puff`) work with both line and non-line targets
36-
- Always check test fixtures in `/resources/fixtures/` to understand behavior
36+
- Always check test fixtures in `/resources/fixtures/recorded` to understand behavior
3737
- Implementation for many actions is in `/packages/lib-engine/src/actions/`
3838
- After running Python scripts or tests, delete any `__pycache__` directories and `.pyc` files created under the repository root.
3939

packages/tool-meta-updater/src/metaUpdater.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ export const updater = async (workspaceDir: string) => {
3333
["package.json"]: updatePackageJson.bind(null, context),
3434
["tsconfig.json"]: updateTSConfig.bind(null, context),
3535
["tsconfig.base.json"]: updateTSConfigBase.bind(null, context),
36-
["data/scopeSupportFacetInfos.md"]: updatesScopeSupportFacetInfos,
36+
["resources/fixtures/scopeSupportFacetInfos.md"]:
37+
updatesScopeSupportFacetInfos,
3738
...Object.fromEntries(
3839
Object.keys(languageScopeSupport).map((languageId) => [
3940
`src/docs/user/languages/${languageId}.mdx`,

pyproject.toml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,10 @@ pythonVersion = "3.11"
1818
reportSelfClsParameterName = false
1919
reportMissingModuleSource = false
2020
reportMissingImports = false
21-
exclude = ["**/node_modules", "**/__pycache__", "**/.*", "resources/playground"]
21+
exclude = [
22+
"**/node_modules",
23+
"**/__pycache__",
24+
"**/.*",
25+
"cursorless-talon/src/vendor",
26+
"resources/playground"
27+
]
File renamed without changes.

0 commit comments

Comments
 (0)