labelpkg

package
v0.0.0-...-d31700d Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 28, 2022 License: MIT Imports: 3 Imported by: 0

Documentation

Index

Examples

Constants

This section is empty.

Variables

View Source
var Label = Rule{

	Rule: name.Rule{
		MaxLen: 30,
		Style:  "lowerCamelCase",
	},
	// contains filtered or unexported fields
}

Functions

func Check

func Check(node ast.Node, fileSet *token.FileSet)
Example
var src = `package example
func F() {
  Label:
}
`
problems.Clear()
w := walker.Parse("example.go", src)
w.Walk(func(isLocal bool, node ast.Node) {
	Check(node, w.FileSet)
})
problems.Render()
Output:

+----------------+-------------------------------------------------+-------------+
|    position    |                     problem                     |    rule     |
+----------------+-------------------------------------------------+-------------+
| example.go:3:3 | label name Label should be lowerCamelCase style | label.style |
+----------------+-------------------------------------------------+-------------+

Types

type Rule

type Rule struct {
	namepkg.Rule `yaml:",inline"`
	// contains filtered or unexported fields
}

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL