aboutsummaryrefslogtreecommitdiffstats
path: root/lua/mason-registry/index/cfn-lint/init.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/mason-registry/index/cfn-lint/init.lua')
-rw-r--r--lua/mason-registry/index/cfn-lint/init.lua15
1 files changed, 15 insertions, 0 deletions
diff --git a/lua/mason-registry/index/cfn-lint/init.lua b/lua/mason-registry/index/cfn-lint/init.lua
new file mode 100644
index 00000000..7eeee2f9
--- /dev/null
+++ b/lua/mason-registry/index/cfn-lint/init.lua
@@ -0,0 +1,15 @@
+local Pkg = require "mason-core.package"
+local pip3 = require "mason-core.managers.pip3"
+local _ = require "mason-core.functional"
+
+return Pkg.new {
+ name = "cfn-lint",
+ desc = _.dedent [[
+ CloudFormation Linter. Validate AWS CloudFormation YAML/JSON templates against the AWS CloudFormation Resource
+ Specification and additional checks. Includes checking valid values for resource properties and best practices.
+ ]],
+ homepage = "https://github.com/aws-cloudformation/cfn-lint",
+ languages = { Pkg.Lang.YAML, Pkg.Lang.JSON },
+ categories = { Pkg.Cat.Linter },
+ install = pip3.packages { "cfn-lint", bin = { "cfn-lint" } },
+}