WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

Commit 863be86

Browse files
authored
feat: Add Macedonian (#1049)
1 parent 3155ff3 commit 863be86

File tree

16 files changed

+1034
-0
lines changed

16 files changed

+1034
-0
lines changed

extensions/macedonian/.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
out
2+
node_modules
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
// A launch configuration that compiles the extension and then opens it inside a new window
2+
{
3+
"version": "0.2.0",
4+
"configurations": [
5+
{
6+
"name": "Launch Extension",
7+
"type": "extensionHost",
8+
"request": "launch",
9+
"runtimeExecutable": "${execPath}",
10+
"args": ["--extensionDevelopmentPath=${workspaceRoot}", "${workspaceRoot}/samples"],
11+
"stopOnEntry": false,
12+
"sourceMaps": true,
13+
"outFiles": ["${workspaceRoot}/out/src/**/*.js"],
14+
"preLaunchTask": "npm: build"
15+
},
16+
{
17+
"name": "Launch Tests",
18+
"type": "extensionHost",
19+
"request": "launch",
20+
"runtimeExecutable": "${execPath}",
21+
"args": ["--extensionDevelopmentPath=${workspaceRoot}", "--extensionTestsPath=${workspaceRoot}/out/test"],
22+
"stopOnEntry": false,
23+
"sourceMaps": true,
24+
"outFiles": ["${workspaceRoot}/out/test/**/*.js"],
25+
"preLaunchTask": "npm: build"
26+
}
27+
]
28+
}
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
{
2+
// See https://go.microsoft.com/fwlink/?LinkId=733558
3+
// for the documentation about the tasks.json format
4+
"version": "2.0.0",
5+
"tasks": [
6+
{
7+
"label": "npm: build",
8+
"type": "npm",
9+
"script": "build",
10+
"group": {
11+
"kind": "build",
12+
"isDefault": true
13+
},
14+
"problemMatcher": "$tsc"
15+
},
16+
{
17+
"label": "npm: clean-build",
18+
"type": "npm",
19+
"script": "clean-build",
20+
"problemMatcher": "$tsc"
21+
},
22+
{
23+
"label": "npm: test",
24+
"type": "npm",
25+
"script": "test",
26+
"group": {
27+
"kind": "test",
28+
"isDefault": true
29+
}
30+
},
31+
{
32+
"label": "npm: watch",
33+
"type": "npm",
34+
"script": "watch",
35+
"problemMatcher": ["$tsc-watch"]
36+
}
37+
]
38+
}
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
.gitignore
2+
.vscode-test/**
3+
.vscode/**
4+
**/*.d.ts
5+
**/*.map
6+
**/*.test.*
7+
out/test/**
8+
samples/**
9+
src/**
10+
test/**
11+
tsconfig.json
12+
vsc-extension-quickstart.md

extensions/macedonian/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Change Log
2+
3+
All notable changes to the "code-spell-checker-macedonian" extension will be documented in this file.
4+
5+
## [Unreleased]
6+
7+
- Initial release
8+
9+
## References
10+
11+
Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file.

0 commit comments

Comments
 (0)