Skip to content

Syntax-aware Go code search, based on the mvdan/gogrep

License

Notifications You must be signed in to change notification settings

quasilyte/gogrep

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

52 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

logo

Build Status PkgGoDev Go Report Card Code Coverage

gogrep

This is an attempt to move a modified gogrep from the go-ruleguard project, so it can be used independently.

This repository contains two Go modules. One for the gogrep library and the second one for the command-line tool.

gogrep as a library

To get a gogrep library module, install the root Go module.

$ go get github.com/quasilyte/gogrep

gogrep as a command-line utility

To get a gogrep command-line tool, install the cmd/gogrep Go submodule.

$ go install github.com/quasilyte/gogrep/cmd/gogrep@latest

See docs/gogrep_cli.md to learn how to use it.

Used by

A gogrep library is used by:

Acknowledgements

The original gogrep is written by the Daniel Martí.