diff options
| author | Evan <yif.wang@icloud.com> | 2022-07-24 15:57:47 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-07-25 00:57:47 +0200 |
| commit | 6747bf7179736b848eda97604cea423a55e4f8fe (patch) | |
| tree | 04cd632e3a26b0617a5869d8bd8b9dcf357439a2 /lua/mason-registry/codespell/init.lua | |
| parent | feat: add flake8 (#123) (diff) | |
| download | mason-6747bf7179736b848eda97604cea423a55e4f8fe.tar mason-6747bf7179736b848eda97604cea423a55e4f8fe.tar.gz mason-6747bf7179736b848eda97604cea423a55e4f8fe.tar.bz2 mason-6747bf7179736b848eda97604cea423a55e4f8fe.tar.lz mason-6747bf7179736b848eda97604cea423a55e4f8fe.tar.xz mason-6747bf7179736b848eda97604cea423a55e4f8fe.tar.zst mason-6747bf7179736b848eda97604cea423a55e4f8fe.zip | |
feat(linter): add codespell (#125)
Diffstat (limited to 'lua/mason-registry/codespell/init.lua')
| -rw-r--r-- | lua/mason-registry/codespell/init.lua | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/lua/mason-registry/codespell/init.lua b/lua/mason-registry/codespell/init.lua new file mode 100644 index 00000000..73639783 --- /dev/null +++ b/lua/mason-registry/codespell/init.lua @@ -0,0 +1,11 @@ +local Pkg = require "mason-core.package" +local pip3 = require "mason-core.managers.pip3" + +return Pkg.new { + name = "codespell", + desc = [[check code for common misspellings]], + homepage = "https://github.com/codespell-project/codespell", + languages = {}, + categories = { Pkg.Cat.Linter }, + install = pip3.packages { "codespell", bin = { "codespell" } }, +} |
