aboutsummaryrefslogtreecommitdiffstats
path: root/lua/mason-registry/commitlint/init.lua
diff options
context:
space:
mode:
authorWilliam Boman <william@redwill.se>2023-02-20 22:19:39 +0100
committerGitHub <noreply@github.com>2023-02-20 22:19:39 +0100
commitb8a6632a0f2d263199d5d480ca85477fe0f414ab (patch)
tree57e1ee0f3cef078ec144ecdf1b2fa861acf47755 /lua/mason-registry/commitlint/init.lua
parentchore: autogenerate (#1015) (diff)
downloadmason-b8a6632a0f2d263199d5d480ca85477fe0f414ab.tar
mason-b8a6632a0f2d263199d5d480ca85477fe0f414ab.tar.gz
mason-b8a6632a0f2d263199d5d480ca85477fe0f414ab.tar.bz2
mason-b8a6632a0f2d263199d5d480ca85477fe0f414ab.tar.lz
mason-b8a6632a0f2d263199d5d480ca85477fe0f414ab.tar.xz
mason-b8a6632a0f2d263199d5d480ca85477fe0f414ab.tar.zst
mason-b8a6632a0f2d263199d5d480ca85477fe0f414ab.zip
feat: configurable registries (#1016)
Diffstat (limited to 'lua/mason-registry/commitlint/init.lua')
-rw-r--r--lua/mason-registry/commitlint/init.lua17
1 files changed, 0 insertions, 17 deletions
diff --git a/lua/mason-registry/commitlint/init.lua b/lua/mason-registry/commitlint/init.lua
deleted file mode 100644
index 02f23ccf..00000000
--- a/lua/mason-registry/commitlint/init.lua
+++ /dev/null
@@ -1,17 +0,0 @@
-local Pkg = require "mason-core.package"
-local _ = require "mason-core.functional"
-local npm = require "mason-core.managers.npm"
-
-return Pkg.new {
- name = "commitlint",
- desc = "commitlint checks if your commit messages meet the conventional commit format.",
- homepage = "https://commitlint.js.org/",
- languages = { Pkg.Lang.GitCommit },
- categories = { Pkg.Cat.Linter },
- install = npm.packages {
- "@commitlint/cli",
- "@commitlint/config-conventional",
- "commitlint-format-json",
- bin = { "commitlint" },
- },
-}