diff options
| author | William Boman <william@redwill.se> | 2023-02-20 22:19:39 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-02-20 22:19:39 +0100 |
| commit | b8a6632a0f2d263199d5d480ca85477fe0f414ab (patch) | |
| tree | 57e1ee0f3cef078ec144ecdf1b2fa861acf47755 /lua/mason-registry/cpplint/init.lua | |
| parent | chore: autogenerate (#1015) (diff) | |
| download | mason-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/cpplint/init.lua')
| -rw-r--r-- | lua/mason-registry/cpplint/init.lua | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/lua/mason-registry/cpplint/init.lua b/lua/mason-registry/cpplint/init.lua deleted file mode 100644 index 2b9eab14..00000000 --- a/lua/mason-registry/cpplint/init.lua +++ /dev/null @@ -1,11 +0,0 @@ -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" } }, -} |
