Skip to content

mbraunwarth/getme

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Getme

CLI utility to find todos, fixmes etc. in your code base. Those tags will referred to as comment tags.

Installation

If you have Go installed, in the downloaded repository run go build to produce a executable.

Usage

Use the getme utility on a file or a directory like so.

> cat main.go
package main

import "fmt"

func main() {
    // TODO write hello world
    fmt.Println("")
}
> getme main.go
./main.go:6:2: TODO -- write hello world

Without argument, getme scans the current directory recursively.

Output

The output is parser friendly and can be used by editors plugins. File name (relative by default), line and column are separated by a colon followed by the and the tags message which are separated by a double dash.

About

Find todos, fixmes etc. in your code base.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages