Skip to content

Commit 5640be5

Browse files
committed
Added definitions for Taplo, Tombi, and the YAML Language Server.
1 parent 1b0cfd9 commit 5640be5

File tree

6 files changed

+87
-0
lines changed

6 files changed

+87
-0
lines changed
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
id = "taplo"
2+
name = "Taplo"
3+
languages = [
4+
"toml",
5+
]
6+
package = "taplo"
7+
command = [
8+
"taplo",
9+
"lsp",
10+
"stdio",
11+
]
12+
root_markers = [
13+
".taplo.toml",
14+
"taplo.toml",
15+
]
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
id = "tombi"
2+
name = "Tombi"
3+
languages = [
4+
"toml",
5+
]
6+
package = "tombi"
7+
command = [
8+
"tombi",
9+
"lsp",
10+
]
11+
root_markers = [
12+
"pyproject.toml",
13+
"tombi.toml",
14+
]
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
id = "yaml-language-server"
2+
name = "YAML Language Server"
3+
languages = [
4+
"yaml",
5+
]
6+
package = "yaml-language-server"
7+
command = [
8+
"yaml-language-server",
9+
"--stdio",
10+
]
11+
root_markers = [
12+
]

Definitions/Packages/taplo.toml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
id = "taplo"
2+
name = "Taplo"
3+
description = "A versatile, feature-rich TOML toolkit."
4+
homepage = "https://taplo.tamasfe.dev/"
5+
licenses = ["MIT"]
6+
categories = ["LSP", "Formatter"]
7+
8+
[source]
9+
id = "pkg:github/tamasfe/[email protected]"
10+
11+
[[source.asset]]
12+
target = "darwin_arm64"
13+
file = "taplo-darwin-aarch64.gz"
14+
bin = "taplo-darwin-aarch64"
15+
16+
[[source.asset]]
17+
target = "darwin_x64"
18+
file = "taplo-darwin-x86_64.gz"
19+
bin = "taplo-darwin-x86_64"
20+
21+
[bin]
22+
taplo = "{{source.asset.bin}}"

Definitions/Packages/tombi.toml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
id = "tombi"
2+
name = "Tombi"
3+
description = "TOML Formatter / Linter / Language Server"
4+
homepage = "https://github.com/tombi-toml/tombi"
5+
licenses = ["MIT"]
6+
categories = ["LSP"]
7+
8+
[source]
9+
id = "pkg:pypi/[email protected]"
10+
11+
[bin]
12+
tombi = "pypi:tombi"
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
id = "yaml-language-server"
2+
name = "YAML Language Server"
3+
description = "Language Server for YAML Files."
4+
homepage = "https://github.com/redhat-developer/yaml-language-server"
5+
licenses = ["MIT"]
6+
categories = ["LSP"]
7+
8+
[source]
9+
id = "pkg:npm/[email protected]"
10+
11+
[bin]
12+
yaml-language-server = "npm:yaml-language-server"

0 commit comments

Comments
 (0)