Skip to content

Commit

Permalink
Add Scripture document model and USFM parsing
Browse files Browse the repository at this point in the history
  • Loading branch information
ddaspit committed Oct 30, 2024
1 parent e4e20de commit 0984d2f
Show file tree
Hide file tree
Showing 39 changed files with 2,317 additions and 61 deletions.
9 changes: 9 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"recommendations": [
"editorconfig.editorconfig",
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
"vitest.explorer",
"luxass.tsup-problem-matchers"
]
}
9 changes: 7 additions & 2 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,13 @@
"name": "Launch Client",
"runtimeExecutable": "${execPath}",
"args": ["--extensionDevelopmentPath=${workspaceRoot}/packages/vscode"],
"outFiles": ["${workspaceRoot}/packages/vscode/dist/**/*.js", "${workspaceRoot}/packages/core/dist/**/*.js"],
"autoAttachChildProcesses": true
"outFiles": [
"${workspaceRoot}/packages/vscode/dist/**/*.js",
"${workspaceRoot}/packages/core/dist/**/*.cjs",
"${workspaceRoot}/packages/usfm/dist/**/*.cjs"
],
"autoAttachChildProcesses": true,
"preLaunchTask": "npm: dev"
}
]
}
6 changes: 5 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,9 @@
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"eslint.useFlatConfig": true,
"eslint.workingDirectories": [{ "pattern": "./packages/*/" }]
"eslint.workingDirectories": [
{
"pattern": "./packages/*/"
}
]
}
Loading

0 comments on commit 0984d2f

Please sign in to comment.