mirror of
https://github.com/mgechev/revive.git
synced 2024-11-21 17:16:40 +02:00
28 lines
578 B
Go
28 lines
578 B
Go
// Package golint comment
|
|
package golint
|
|
|
|
|
|
// path separator defined by os.Separator.
|
|
const FilePath = "xyz"
|
|
|
|
|
|
// Rewrite string to remove non-standard path characters
|
|
func UnicodeSanitize(s string) string {}
|
|
|
|
|
|
// Tags returns a slice of tags. The order is the original tag order unless it
|
|
// was changed.
|
|
func (t *Tags) Keys() []string {}
|
|
|
|
// A value which may be passed to the which parameter for Getitimer and
|
|
type ItimerWhich int
|
|
|
|
// toolchain var incorrect
|
|
var ToolchainRE = "toolchain"
|
|
|
|
/*
|
|
// PropertyBag
|
|
*/
|
|
// Rectangle An area within an image.
|
|
type Rectangle struct {}
|