Skip to content

Commit

Permalink
fix(protolint): use Protobuf language (#641)
Browse files Browse the repository at this point in the history
  • Loading branch information
williamboman authored Nov 6, 2022
1 parent 938c8fa commit d3c2156
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lua/mason-registry/protolint/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ return Pkg.new {
desc = [[protolint is the pluggable linting/fixing utility for Protocol Buffer files (proto2+proto3)]],
homepage = "https://github.com/yoheimuta/protolint",
categories = { Pkg.Cat.Linter },
languages = { Pkg.Lang["proto"] },
languages = { Pkg.Lang.Protobuf },
install = function(ctx)
---@param template_string string
local function release_file(template_string)
Expand Down
3 changes: 1 addition & 2 deletions lua/mason/mappings/language.lua
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,7 @@ return {
php = { "intelephense", "php-cs-fixer", "php-debug-adapter", "phpactor", "phpcbf", "phpcs", "phpmd", "phpstan", "pint", "psalm" },
powershell = { "powershell-editor-services" },
prisma = { "prisma-language-server" },
proto = { "protolint" },
protobuf = { "buf", "buf-language-server" },
protobuf = { "buf", "buf-language-server", "protolint" },
puppet = { "puppet-editor-services" },
purescript = { "purescript-language-server" },
python = { "autoflake", "autopep8", "black", "blue", "debugpy", "flake8", "isort", "jedi-language-server", "mypy", "pydocstyle", "pylama", "pylint", "pyproject-flake8", "pyre", "pyright", "python-lsp-server", "rstcheck", "sourcery", "vulture", "yapf" },
Expand Down

2 comments on commit d3c2156

@jay-babu
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

sorry

@williamboman
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Haha don't worry mate, it's a team effort!

Please sign in to comment.