Skip to content

Commit

Permalink
Rewrite to use remark-language-server
Browse files Browse the repository at this point in the history
Closes GH-65.

Reviewed-by: Christian Murphy <christian.murphy.42@gmail.com>
Reviewed-by: Titus Wormer <tituswormer@gmail.com>
  • Loading branch information
remcohaszing authored Jul 13, 2022
1 parent 4830030 commit da00a11
Show file tree
Hide file tree
Showing 23 changed files with 8,445 additions and 24,305 deletions.
2 changes: 2 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
*.md
.vscode-test/
out/
1 change: 0 additions & 1 deletion .remarkignore

This file was deleted.

28 changes: 24 additions & 4 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,34 @@
{
"version": "0.1.0",
"version": "0.2.0",
"configurations": [
{
"name": "Launch Extension",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": ["--extensionDevelopmentPath=${workspaceRoot}"],
"stopOnEntry": false,
"outFiles": ["${workspaceRoot}/out"]
"args": [
"${workspaceFolder}/readme.md",
"--extensionDevelopmentPath=${workspaceFolder}"
],
"presentation": {
"hidden": true
}
},
{
"name": "Remark language server",
"type": "node",
"request": "attach",
"port": 6009,
"presentation": {
"hidden": true
}
}
],
"compounds": [
{
"preLaunchTask": "build",
"name": "Extension + Language server",
"configurations": ["Launch Extension", "Remark language server"]
}
]
}
14 changes: 14 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"script": "build",
"label": "build",
"group": {
"kind": "build",
"isDefault": true
}
}
]
}
19 changes: 9 additions & 10 deletions .vscodeignore
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
.vscode/**
.vscode-test/**
out/test/**
src/**
.editorconfig
.gitignore
**/tsconfig.json
**/.eslintrc.json
**/*.map
**/*.ts
.*
.*/
node_modules/
src/
test/
test.js
renovate.json
package-lock.json
tsconfig.json
142 changes: 0 additions & 142 deletions README.md

This file was deleted.

2 changes: 1 addition & 1 deletion package-json-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"$schema": "https://json-schema.org/draft-04/schema",
"properties": {
"remarkConfig": {
"description": "Remark configuration",
"description": "remark configuration",
"$ref": "https://json.schemastore.org/remarkrc"
}
}
Expand Down
Loading

0 comments on commit da00a11

Please sign in to comment.