diff options
Diffstat (limited to 'lua/mason-registry/index/cpplint/init.lua')
| -rw-r--r-- | lua/mason-registry/index/cpplint/init.lua | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/lua/mason-registry/index/cpplint/init.lua b/lua/mason-registry/index/cpplint/init.lua new file mode 100644 index 00000000..2b9eab14 --- /dev/null +++ b/lua/mason-registry/index/cpplint/init.lua @@ -0,0 +1,11 @@ +local Pkg = require "mason-core.package" +local pip3 = require "mason-core.managers.pip3" + +return Pkg.new { + name = "cpplint", + desc = [[Cpplint is a command-line tool to check C/C++ files for style issues following Google's C++ style guide]], + homepage = "https://pypi.org/project/cpplint/", + languages = { Pkg.Lang.C, Pkg.Lang["C++"] }, + categories = { Pkg.Cat.Linter }, + install = pip3.packages { "cpplint", bin = { "cpplint" } }, +} |
