Skip to content

Commit

Permalink
feat: add cspell spell checker (#65)
Browse files Browse the repository at this point in the history
  • Loading branch information
Relms12345 authored Jul 12, 2022
1 parent 679233a commit 9c22497
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
11 changes: 11 additions & 0 deletions lua/mason-registry/cspell/init.lua
Original file line number Diff line number Diff line change
@@ -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" } },
}
1 change: 1 addition & 0 deletions lua/mason-registry/index.lua
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ return {
cpptools = "mason-registry.cpptools",
crystalline = "mason-registry.crystalline",
["csharp-language-server"] = "mason-registry.csharp-language-server",
cspell = "mason-registry.cspell",
["css-lsp"] = "mason-registry.css-lsp",
["cssmodules-language-server"] = "mason-registry.cssmodules-language-server",
["cucumber-language-server"] = "mason-registry.cucumber-language-server",
Expand Down

0 comments on commit 9c22497

Please sign in to comment.