-
-
Notifications
You must be signed in to change notification settings - Fork 287
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add gotests, gomodifytags, impl (#28)
Co-authored-by: cinuor <[email protected]>
- Loading branch information
1 parent
8cad236
commit a342c97
Showing
4 changed files
with
36 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
local Pkg = require "mason.core.package" | ||
local go = require "mason.core.managers.go" | ||
|
||
return Pkg.new { | ||
name = "gomodifytags", | ||
desc = [[Go tool to modify/update field tags in structs]], | ||
homepage = "https://github.com/fatih/gomodifytags", | ||
categories = {}, | ||
languages = { Pkg.Lang.Go }, | ||
install = go.packages { "github.com/fatih/gomodifytags", bin = { "gomodifytags" } }, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
local Pkg = require "mason.core.package" | ||
local go = require "mason.core.managers.go" | ||
|
||
return Pkg.new { | ||
name = "gotests", | ||
desc = [[Gotests is a Golang commandline tool that generates table driven tests based on its target source files' function and method signatures.]], | ||
homepage = "https://github.com/cweill/gotests", | ||
categories = {}, | ||
languages = { Pkg.Lang.Go }, | ||
install = go.packages { "github.com/cweill/gotests/...", bin = { "gotests" } }, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
local Pkg = require "mason.core.package" | ||
local go = require "mason.core.managers.go" | ||
|
||
return Pkg.new { | ||
name = "impl", | ||
desc = [[impl generates method stubs for implementing an interface.]], | ||
homepage = "https://github.com/josharian/impl", | ||
categories = {}, | ||
languages = { Pkg.Lang.Go }, | ||
install = go.packages { "github.com/josharian/impl", bin = { "impl" } }, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters