Skip to content

Commit

Permalink
feat: Add Swiss German (#549)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason3S authored Feb 27, 2023
1 parent c3af93d commit bca47c2
Show file tree
Hide file tree
Showing 20 changed files with 1,089 additions and 14 deletions.
13 changes: 7 additions & 6 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,19 @@ The [Yeoman](http://yeoman.io/) script can help you create the dictionary templa
Install Yeoman and then link the generator.

```sh
npm install
npm install -g yo
cd generator-cspell-dicts-extensions
npm install
npm link
cd ..
npm run create:setup
```

#### Running the generator.

In the `vscode-cspell-dict-extensions` repository root.

```sh
npm run create:extension
```

or

```sh
yo cspell-dict-extensions <name>
```
Expand Down
2 changes: 2 additions & 0 deletions extensions/swiss-german/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
out
node_modules
28 changes: 28 additions & 0 deletions extensions/swiss-german/.vscode/launch.json
Original file line number Diff line number Diff line change
@@ -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/swiss-german/.vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -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/swiss-german/.vscodeignore
Original file line number Diff line number Diff line change
@@ -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/swiss-german/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Change Log

All notable changes to the "code-spell-checker-swiss-german" 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.
Loading

0 comments on commit bca47c2

Please sign in to comment.