feature: golangci configuration

This commit is contained in:
RouxAntoine 2023-12-30 00:35:02 +01:00
parent a8f1953ef2
commit 912d7ead23
Signed by: antoine
GPG Key ID: 098FB66FC0475E70
5 changed files with 39 additions and 2 deletions

26
.golangci.yml Normal file
View File

@ -0,0 +1,26 @@
linters:
enable:
- errcheck
- errorlint
- gocritic
- gosec
- gosimple
- govet
- gci
- misspell
- nonamedreturns
- staticcheck
- unconvert
- unparam
- unused
- whitespace
linters-settings:
gci:
sections:
- standard
- default
- prefix(antoine-roux.tk/projects/go)
run:
timeout: 5m

View File

@ -6,3 +6,6 @@ build:
run:
@chmod +x ./out/main
./out/main
ci:
golangci-lint run --fix

View File

@ -3,7 +3,5 @@ package main
import "fmt"
func main() {
fmt.Println("Hello world !")
}

2
doc.go Normal file
View File

@ -0,0 +1,2 @@
// Package gotemplate is a sample project for bootstrapping golang project.
package gotemplate

View File

@ -1 +1,9 @@
# documentations
local :
linter required
```shell
$ brew install golangci-lint
```