Skip to content

Commit 74e4a2b

Browse files
Move date the directory into resources
1 parent 80e2e62 commit 74e4a2b

7,080 files changed

Lines changed: 20 additions & 23 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.editorconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ insert_final_newline = false
2424
# with a line that has trailing white space. Many of our recorded
2525
# tests use strings with trailing white space to represent the final
2626
# document contents. For example
27-
# data/fixtures/recorded/languages/ruby/changeCondition.yml
27+
# resources/fixtures/recorded/languages/ruby/changeCondition.yml
2828
trim_trailing_whitespace = false
2929

3030
[Makefile]

.git-blame-ignore-revs

Lines changed: 0 additions & 3 deletions
This file was deleted.

.luarc.json

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

.pre-commit-config.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
minimum_pre_commit_version: "3.2.0"
22
ci:
33
autoupdate_schedule: monthly
4-
exclude: /vendor/|^data/playground/
4+
exclude: /vendor/|^resources/playground/
55
repos:
66
- repo: meta
77
hooks:
@@ -43,7 +43,7 @@ repos:
4343
# tests use strings with trailing white space to represent the final
4444
# document contents. For example
4545
# data/fixtures/recorded/languages/ruby/changeCondition.yml
46-
exclude: ^data/fixtures/recorded/.*/[^/]*\.yml$|\.scope$|/generated/|^resources/patches/
46+
exclude: ^resources/fixtures/recorded/.*/[^/]*\.yml$|\.scope$|/generated/|^resources/patches/
4747

4848
- repo: local
4949
hooks:
@@ -67,15 +67,15 @@ repos:
6767
hooks:
6868
- id: format-recorded-tests
6969
name: format-recorded-tests
70-
files: ^data/fixtures/recorded/.*/[^/]*\.yml$
70+
files: ^resources/fixtures/recorded/.*/[^/]*\.yml$
7171
language: system
7272
entry: pnpm transform-recorded-tests
7373

7474
- repo: local
7575
hooks:
7676
- id: check-recorded-test-marks
7777
name: check-recorded-test-marks
78-
files: ^data/fixtures/recorded/.*/[^/]*\.yml$
78+
files: ^resources/fixtures/recorded/.*/[^/]*\.yml$
7979
language: system
8080
entry: pnpm transform-recorded-tests --check-marks
8181

.prettierignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
/packages/lib-engine/src/snippets/vendor/
1313

1414
# We use our own format for our recorded yaml tests to keep them compact
15-
/data/fixtures/recorded/**/*.yml
15+
/resources/fixtures/recorded/**/*.yml
1616

1717
# Anywhere
1818
node_modules/

AGENTS.md

Lines changed: 2 additions & 2 deletions

eslint.config.mts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ const ignoresConfig: ConfigWithExtends = {
1818
ignores: [
1919
// Workspace
2020
".git/**",
21-
"data/playground/**",
21+
"resources/playground/**",
2222
// Packages
2323
"packages/*/out/**",
2424
"packages/*/dist/**",

packages/app-vscode/src/scripts/populateDist/assets.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export const assets: Asset[] = [
2626
destination: "images/hats",
2727
},
2828
{
29-
source: "../../data/fixtures/recorded/tutorial",
29+
source: "../../resources/fixtures/recorded/tutorial",
3030
destination: "tutorial",
3131
},
3232
{

packages/app-web-docs/src/docs/components/ScopeVisualizer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ function renderFacet(
232232
<Code
233233
link={{
234234
name: "GitHub",
235-
url: `https://github.com/cursorless-dev/cursorless/blob/main/data/fixtures/${fixture.name}.scope`,
235+
url: `https://github.com/cursorless-dev/cursorless/blob/main/resources/fixtures/${fixture.name}.scope`,
236236
}}
237237
languageId={languageId ?? fixture.languageId}
238238
renderWhitespace={renderWhitespace}

packages/app-web-docs/src/docs/contributing/adding-a-new-scope.md

Lines changed: 2 additions & 2 deletions

0 commit comments

Comments
 (0)