diff options
| author | Lvim Tech <82431193+lvim-tech@users.noreply.github.com> | 2022-07-11 17:30:23 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-07-11 16:30:23 +0200 |
| commit | 157ece0b82684c7644a32ef7d5e88a2927d027cb (patch) | |
| tree | baafcd074a5eaf7630d685b5644997b20445c1c1 /lua/mason-registry/cpplint/init.lua | |
| parent | feat(ui): segmentize sticky cursor for better UX (#50) (diff) | |
| download | mason-157ece0b82684c7644a32ef7d5e88a2927d027cb.tar mason-157ece0b82684c7644a32ef7d5e88a2927d027cb.tar.gz mason-157ece0b82684c7644a32ef7d5e88a2927d027cb.tar.bz2 mason-157ece0b82684c7644a32ef7d5e88a2927d027cb.tar.lz mason-157ece0b82684c7644a32ef7d5e88a2927d027cb.tar.xz mason-157ece0b82684c7644a32ef7d5e88a2927d027cb.tar.zst mason-157ece0b82684c7644a32ef7d5e88a2927d027cb.zip | |
feat: add pylint, cpplint, prettier (#51)
Diffstat (limited to 'lua/mason-registry/cpplint/init.lua')
| -rw-r--r-- | lua/mason-registry/cpplint/init.lua | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/lua/mason-registry/cpplint/init.lua b/lua/mason-registry/cpplint/init.lua new file mode 100644 index 00000000..2b9eab14 --- /dev/null +++ b/lua/mason-registry/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" } }, +} |
