diff options
| author | Daryl Ronningen <relms@relms.dev> | 2022-07-12 16:12:30 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-07-12 23:12:30 +0000 |
| commit | 9c22497ea774e6682b14d5feff2a8e9bc14faf76 (patch) | |
| tree | cc0bd56ac61ceb606bf7cc799667e6ca5b4f5819 /lua/mason-registry/cspell/init.lua | |
| parent | fix(groovy-language-server): update jar path (#64) (diff) | |
| download | mason-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.lua | 11 |
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" } }, +} |
