...

Package timeformat

import "golang.org/x/tools/go/analysis/passes/timeformat"
Overview
Index

Overview ▾

Package timeformat defines an Analyzer that checks for the use of time.Format or time.Parse calls with a bad format.

Index ▾

Package files

timeformat.go

Constants

const Doc = `check for calls of (time.Time).Format or time.Parse with 2006-02-01

The timeformat checker looks for time formats with the 2006-02-01 (yyyy-dd-mm)
format. Internationally, "yyyy-dd-mm" does not occur in common calendar date
standards, and so it is more likely that 2006-01-02 (yyyy-mm-dd) was intended.
`

Variables

var Analyzer = &analysis.Analyzer{
    Name:     "timeformat",
    Doc:      Doc,
    Requires: []*analysis.Analyzer{inspect.Analyzer},
    Run:      run,
}