forked from thrasher-corp/gocryptotrader
-
Notifications
You must be signed in to change notification settings - Fork 1
/
codelingo.yaml
33 lines (32 loc) · 1.26 KB
/
codelingo.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
tenets:
# Import effective Go bundle manually
- import: codelingo/effective-go/avoid-annotations-in-comments
- import: codelingo/effective-go/comment-first-word-as-subject
- import: codelingo/effective-go/good-package-name
- import: codelingo/effective-go/single-method-interface-name
- import: codelingo/effective-go/underscores-in-name
# Overwrite one tenet with custom logic
# - import: codelingo/effective-go/comment-first-word-when-empty
- name: comment-first-word-when-empty
flows:
codelingo/review:
comment: |
Every exported function in a program should have a doc comment. The first sentence should be a summary that starts with the name ({{funcName}}) being declared.
From [effective go](https://golang.org/doc/effective_go.html#commentary).
codelingo/rewrite:
place: holder
query: |
import codelingo/ast/go
@review comment
@rewrite --prepend --line "// {{funcName}} is a function."
go.func_decl(depth = any):
# Customisation to exclude test packages
exclude:
go.ident:
name as funcname
regex(/_test/, funcname)
exclude:
go.comment_group
go.ident:
name as funcName
public == "true"