typepkg

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 LocalType = Rule{

	Rule: name.Rule{
		MaxLen: 30,
		Style:  "lowerCamelCase",
	},
	// contains filtered or unexported fields
}
View Source
var Type = Rule{

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

Functions

func Check

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

+----------------+---------------------------------------------------------+-----------------+
|    position    |                         problem                         |      rule       |
+----------------+---------------------------------------------------------+-----------------+
| example.go:4:8 | local type name TypeName should be lowerCamelCase style | localType.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