mirror of
https://github.com/mgechev/revive.git
synced 2024-11-24 08:32:22 +02:00
f966283f3e
* Fix rule for documentation of exported types The rule was failing in the following case: ```go // A is an awesome type type A = int ``` Because revive was skipping the leading `A`, considering it as an article. * Add "This" article and update Makefile
7 lines
82 B
YAML
7 lines
82 B
YAML
language: go
|
|
|
|
go: "1.10.x"
|
|
|
|
install: make install
|
|
script: make build && make test
|