aboutsummaryrefslogtreecommitdiffstats
path: root/lua/mason-registry/index/jsonlint/init.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/mason-registry/index/jsonlint/init.lua')
-rw-r--r--lua/mason-registry/index/jsonlint/init.lua13
1 files changed, 13 insertions, 0 deletions
diff --git a/lua/mason-registry/index/jsonlint/init.lua b/lua/mason-registry/index/jsonlint/init.lua
new file mode 100644
index 00000000..d07b8f9e
--- /dev/null
+++ b/lua/mason-registry/index/jsonlint/init.lua
@@ -0,0 +1,13 @@
+local Pkg = require "mason-core.package"
+local npm = require "mason-core.managers.npm"
+
+return Pkg.new {
+ name = "jsonlint",
+ desc = [[A pure JavaScript version of the service provided at jsonlint.com.]],
+ homepage = "https://github.com/zaach/jsonlint",
+ languages = {
+ Pkg.Lang.JSON,
+ },
+ categories = { Pkg.Cat.Linter },
+ install = npm.packages { "jsonlint", bin = { "jsonlint" } },
+}