Compare commits

...

9 Commits

Author SHA1 Message Date
Kyle Quest 3cbb23ba17
Merge pull request #240 from barockok/patch-1
Update /vendor/README.md
4 months ago
Kyle Quest 4c9184a207
Update README.md 4 months ago
Kyle Quest 6a5696718b
Update README.md 4 months ago
Kyle Quest fc69065944
Merge pull request #228 from aqyuki/fix-recommend-tool
docs : Change recommended linter
4 months ago
Kyle Quest 197a17dee1
Merge pull request #229 from nemre/patch-1
Create .gitattributes
4 months ago
Zidni Mubarok a156be9f5c
Update /vendor/README.md
since the vendor already stable since 1.5, update the doc to remove the note on vendor still experiment.
7 months ago
Emre Önal 6c0ad2ad87
Create .gitattributes
https://github.com/golang/go/blob/master/.gitattributes
golang.org/issue/9281
9 months ago
yksk171118@gmail.com b97f92fb16 fix : fix URL 9 months ago
yksk171118@gmail.com 787081390a docs : Change recommended linter
Changed to use staticcheck since it is currently not maintained and golint was recommended. Also added that golint is currently deprecated and not maintained.
9 months ago

1
.gitattributes vendored

@ -0,0 +1 @@
* -text

@ -30,7 +30,7 @@ This project layout is intentionally generic and it doesn't try to impose a spec
This is a community effort. Open an issue if you see a new pattern or if you think one of the existing patterns needs to be updated.
If you need help with naming, formatting and style start by running [`gofmt`](https://golang.org/cmd/gofmt/) and [`golint`](https://github.com/golang/lint). Also make sure to read these Go code style guidelines and recommendations:
If you need help with naming, formatting and style start by running [`gofmt`](https://golang.org/cmd/gofmt/) and [`staticcheck`](https://github.com/dominikh/go-tools/tree/master/cmd/staticcheck). The previous standard linter, golint, is now deprecated and not maintained; use of a maintained linter such as staticcheck is recommended. Also make sure to read these Go code style guidelines and recommendations:
* https://talks.golang.org/2014/names.slide
* https://golang.org/doc/effective_go.html#names
* https://blog.golang.org/package-names

2
vendor/README.md vendored

@ -1,6 +1,6 @@
# `/vendor`
Application dependencies (managed manually or by your favorite dependency management tool like the new built-in, but still experimental, [`modules`](https://github.com/golang/go/wiki/Modules) feature).
Application dependencies (managed manually or by your favorite dependency management tool or the built-in [`modules`](https://github.com/golang/go/wiki/Modules) feature).
Don't commit your application dependencies if you are building a library.

Loading…
Cancel
Save