Golint (#386)
Lint and vet the curret code add docs about adding a git post-commit hook that performs these actions after each commit.
This commit is contained in:
parent
d3dae8d77f
commit
fc85754849
3 changed files with 50 additions and 18 deletions
|
@ -30,7 +30,7 @@ covered.
|
||||||
|
|
||||||
### Proposals, suggestions, ideas, new features
|
### Proposals, suggestions, ideas, new features
|
||||||
|
|
||||||
First, please [search](https://github.com/miekg/dns/search?q=&type=Issues&utf8=%E2%9C%93)
|
First, please [search](https://github.com/miekg/coredns/search?q=&type=Issues&utf8=%E2%9C%93)
|
||||||
with a variety of keywords to ensure your suggestion/proposal is new.
|
with a variety of keywords to ensure your suggestion/proposal is new.
|
||||||
|
|
||||||
If so, you may open either an issue or a pull request for discussion and
|
If so, you may open either an issue or a pull request for discussion and
|
||||||
|
@ -51,9 +51,37 @@ a lot of time.
|
||||||
|
|
||||||
### Vulnerabilities
|
### Vulnerabilities
|
||||||
|
|
||||||
If you've found a vulnerability that is serious, please email me: miek@miek.nl
|
If you've found a vulnerability that is serious, please email me: <miek@miek.nl>.
|
||||||
If it's not a big deal, a pull request will probably be faster.
|
If it's not a big deal, a pull request will probably be faster.
|
||||||
|
|
||||||
## Thank you
|
## Thank you
|
||||||
|
|
||||||
Thanks for your help! CoreDNS would not be what it is today without your contributions.
|
Thanks for your help! CoreDNS would not be what it is today without your contributions.
|
||||||
|
|
||||||
|
## Git Hook
|
||||||
|
|
||||||
|
We use `golint` and `go vet` as tools to warn use about things (noted golint is obnoxious sometimes,
|
||||||
|
but still helpful). Add the following script as a git `post-commit` in `.git/hooks/post-commit` and
|
||||||
|
make it executable.
|
||||||
|
|
||||||
|
~~~ sh
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# <https://git-scm.com/docs/githooks>:
|
||||||
|
# The script takes no parameters and its exit status does not affect the commit in any way. You can
|
||||||
|
# use git # rev-parse HEAD to get the new commit’s SHA1 hash, or you can use git log -l HEAD to get
|
||||||
|
# all of its # information.
|
||||||
|
|
||||||
|
for d in *; do
|
||||||
|
if [[ "$d" == "vendor" ]]; then
|
||||||
|
continue
|
||||||
|
fi
|
||||||
|
if [[ "$d" == "logo" ]]; then
|
||||||
|
continue
|
||||||
|
fi
|
||||||
|
if [[ ! -d "$d" ]]; then
|
||||||
|
continue
|
||||||
|
fi
|
||||||
|
golint "$d"/...
|
||||||
|
done
|
||||||
|
~~~
|
||||||
|
|
|
@ -11,20 +11,20 @@ func (t *Tree) Print() {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (n *Node) print() {
|
func (n *Node) print() {
|
||||||
q := NewQueue()
|
q := newQueue()
|
||||||
q.Push(n)
|
q.push(n)
|
||||||
|
|
||||||
nodesInCurrentLevel := 1
|
nodesInCurrentLevel := 1
|
||||||
nodesInNextLevel := 0
|
nodesInNextLevel := 0
|
||||||
|
|
||||||
for !q.Empty() {
|
for !q.empty() {
|
||||||
do := q.Pop()
|
do := q.pop()
|
||||||
nodesInCurrentLevel--
|
nodesInCurrentLevel--
|
||||||
|
|
||||||
if do != nil {
|
if do != nil {
|
||||||
fmt.Print(do.Elem.Name(), " ")
|
fmt.Print(do.Elem.Name(), " ")
|
||||||
q.Push(do.Left)
|
q.push(do.Left)
|
||||||
q.Push(do.Right)
|
q.push(do.Right)
|
||||||
nodesInNextLevel += 2
|
nodesInNextLevel += 2
|
||||||
}
|
}
|
||||||
if nodesInCurrentLevel == 0 {
|
if nodesInCurrentLevel == 0 {
|
||||||
|
@ -38,21 +38,25 @@ func (n *Node) print() {
|
||||||
|
|
||||||
type queue []*Node
|
type queue []*Node
|
||||||
|
|
||||||
func NewQueue() queue {
|
// newQueue returns a new queue.
|
||||||
|
func newQueue() queue {
|
||||||
q := queue([]*Node{})
|
q := queue([]*Node{})
|
||||||
return q
|
return q
|
||||||
}
|
}
|
||||||
|
|
||||||
func (q *queue) Push(n *Node) {
|
// push pushes n to the end of the queue.
|
||||||
|
func (q *queue) push(n *Node) {
|
||||||
*q = append(*q, n)
|
*q = append(*q, n)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (q *queue) Pop() *Node {
|
// pop pops the first element off the queue.
|
||||||
|
func (q *queue) pop() *Node {
|
||||||
n := (*q)[0]
|
n := (*q)[0]
|
||||||
*q = (*q)[1:]
|
*q = (*q)[1:]
|
||||||
return n
|
return n
|
||||||
}
|
}
|
||||||
|
|
||||||
func (q *queue) Empty() bool {
|
// empty returns true when the queue containes zero nodes.
|
||||||
|
func (q *queue) empty() bool {
|
||||||
return len(*q) == 0
|
return len(*q) == 0
|
||||||
}
|
}
|
||||||
|
|
|
@ -83,12 +83,12 @@ func serviceListFunc(c *kubernetes.Clientset, ns string, s *labels.Selector) fun
|
||||||
if s != nil {
|
if s != nil {
|
||||||
opts.LabelSelector = *s
|
opts.LabelSelector = *s
|
||||||
}
|
}
|
||||||
list_v1, err := c.Core().Services(ns).List(opts)
|
listV1, err := c.Core().Services(ns).List(opts)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
var list_api api.ServiceList
|
var listAPI api.ServiceList
|
||||||
err = v1.Convert_v1_ServiceList_To_api_ServiceList(list_v1, &list_api, nil)
|
err = v1.Convert_v1_ServiceList_To_api_ServiceList(listV1, &listAPI, nil)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
@ -110,12 +110,12 @@ func namespaceListFunc(c *kubernetes.Clientset, s *labels.Selector) func(api.Lis
|
||||||
if s != nil {
|
if s != nil {
|
||||||
opts.LabelSelector = *s
|
opts.LabelSelector = *s
|
||||||
}
|
}
|
||||||
list_v1, err := c.Core().Namespaces().List(opts)
|
listV1, err := c.Core().Namespaces().List(opts)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
var list_api api.NamespaceList
|
var listAPI api.NamespaceList
|
||||||
err = v1.Convert_v1_NamespaceList_To_api_NamespaceList(list_v1, &list_api, nil)
|
err = v1.Convert_v1_NamespaceList_To_api_NamespaceList(listV1, &listAPI, nil)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue