aboutsummaryrefslogtreecommitdiffstats
path: root/lua/mason-registry/cspell/init.lua
diff options
context:
space:
mode:
authorDaryl Ronningen <relms@relms.dev>2022-07-12 16:12:30 -0700
committerGitHub <noreply@github.com>2022-07-12 23:12:30 +0000
commit9c22497ea774e6682b14d5feff2a8e9bc14faf76 (patch)
treecc0bd56ac61ceb606bf7cc799667e6ca5b4f5819 /lua/mason-registry/cspell/init.lua
parentfix(groovy-language-server): update jar path (#64) (diff)
downloadmason-9c22497ea774e6682b14d5feff2a8e9bc14faf76.tar
mason-9c22497ea774e6682b14d5feff2a8e9bc14faf76.tar.gz
mason-9c22497ea774e6682b14d5feff2a8e9bc14faf76.tar.bz2
mason-9c22497ea774e6682b14d5feff2a8e9bc14faf76.tar.lz
mason-9c22497ea774e6682b14d5feff2a8e9bc14faf76.tar.xz
mason-9c22497ea774e6682b14d5feff2a8e9bc14faf76.tar.zst
mason-9c22497ea774e6682b14d5feff2a8e9bc14faf76.zip
feat: add cspell spell checker (#65)
Diffstat (limited to 'lua/mason-registry/cspell/init.lua')
-rw-r--r--lua/mason-registry/cspell/init.lua11
1 files changed, 11 insertions, 0 deletions
diff --git a/lua/mason-registry/cspell/init.lua b/lua/mason-registry/cspell/init.lua
new file mode 100644
index 00000000..9c3a9ce7
--- /dev/null
+++ b/lua/mason-registry/cspell/init.lua
@@ -0,0 +1,11 @@
+local Pkg = require "mason-core.package"
+local npm = require "mason-core.managers.npm"
+
+return Pkg.new {
+ name = "cspell",
+ desc = [[A Spell Checker for Code]],
+ homepage = "https://github.com/streetsidesoftware/cspell",
+ languages = {},
+ categories = { Pkg.Cat.Linter },
+ install = npm.packages { "cspell", bin = { "cspell" } },
+}