Skip to content

Commit

Permalink
feat: Finnish Code Spell Checker (#853)
Browse files Browse the repository at this point in the history
  • Loading branch information
NutCr4cker12 committed Jan 26, 2024
1 parent 8b0c889 commit 6724ef9
Show file tree
Hide file tree
Showing 17 changed files with 1,048 additions and 0 deletions.
2 changes: 2 additions & 0 deletions README.md
Expand Up @@ -140,6 +140,7 @@ See [CONTRIBUTING.md](CONTRIBUTING.md)
- _Catalan_ - [Jordi Olivares Provencio](https://github.com/jordiolivares)
- _Czech_ - [Zereges](https://github.com/Zereges)
- _Estonian_ - [Igor Krupenja](https://github.com/igor-krupenja)
- _Finnish_ - [Kimi Heinonen](https://github.com/NutCr4cker12)
- _Polish_ - [Jackens](https://github.com/jackens)
- _Danish_ - [viktorstrate](https://github.com/viktorstrate)
- _Slovenian_ - [KrOstir](https://github.com/KrOstir)
Expand Down Expand Up @@ -172,4 +173,5 @@ cspell:words Combinacijus
cspell:words Bokmål bokmal
cspell:words Watheq Taha Zerrouki Ahmed ElTabarani
cspell:words Nederlands
cspell:words Kimi Heinonen
--->
2 changes: 2 additions & 0 deletions extensions/finnish/.gitignore
@@ -0,0 +1,2 @@
out
node_modules
28 changes: 28 additions & 0 deletions extensions/finnish/.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/finnish/.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/finnish/.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/finnish/CHANGELOG.md
@@ -0,0 +1,11 @@
# Change Log

All notable changes to the "code-spell-checker-finnish" 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 6724ef9

Please sign in to comment.