Skip to content

Commit

Permalink
feat: Add Basque language extension (#466)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason3S committed Jan 6, 2023
1 parent a3c21e3 commit eea0f93
Show file tree
Hide file tree
Showing 18 changed files with 1,094 additions and 0 deletions.
3 changes: 3 additions & 0 deletions dict-extensions.code-workspace
Expand Up @@ -6,6 +6,9 @@
{
"path": "extensions/arabic"
},
{
"path": "extensions/basque"
},
{
"path": "extensions/bulgarian"
},
Expand Down
2 changes: 2 additions & 0 deletions extensions/basque/.gitignore
@@ -0,0 +1,2 @@
out
node_modules
28 changes: 28 additions & 0 deletions extensions/basque/.vscode/launch.json
@@ -0,0 +1,28 @@
// A launch configuration that compiles the extension and then opens it inside a new window
{
"version": "0.2.0",
"configurations": [
{
"name": "Launch Extension",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": ["--extensionDevelopmentPath=${workspaceRoot}", "${workspaceRoot}/samples"],
"stopOnEntry": false,
"sourceMaps": true,
"outFiles": ["${workspaceRoot}/out/src/**/*.js"],
"preLaunchTask": "npm: build"
},
{
"name": "Launch Tests",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": ["--extensionDevelopmentPath=${workspaceRoot}", "--extensionTestsPath=${workspaceRoot}/out/test"],
"stopOnEntry": false,
"sourceMaps": true,
"outFiles": ["${workspaceRoot}/out/test/**/*.js"],
"preLaunchTask": "npm: build"
}
]
}
38 changes: 38 additions & 0 deletions extensions/basque/.vscode/tasks.json
@@ -0,0 +1,38 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "npm: build",
"type": "npm",
"script": "build",
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": "$tsc"
},
{
"label": "npm: clean-build",
"type": "npm",
"script": "clean-build",
"problemMatcher": "$tsc"
},
{
"label": "npm: test",
"type": "npm",
"script": "test",
"group": {
"kind": "test",
"isDefault": true
}
},
{
"label": "npm: watch",
"type": "npm",
"script": "watch",
"problemMatcher": ["$tsc-watch"]
}
]
}
12 changes: 12 additions & 0 deletions extensions/basque/.vscodeignore
@@ -0,0 +1,12 @@
.gitignore
.vscode-test/**
.vscode/**
**/*.d.ts
**/*.map
**/*.test.*
out/test/**
samples/**
src/**
test/**
tsconfig.json
vsc-extension-quickstart.md
11 changes: 11 additions & 0 deletions extensions/basque/CHANGELOG.md
@@ -0,0 +1,11 @@
# Change Log

All notable changes to the "code-spell-checker-basque" extension will be documented in this file.

## [Unreleased]

- Initial release

## References

Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file.

0 comments on commit eea0f93

Please sign in to comment.