1
0
Fork 0
mirror of https://github.com/laravel-ls/uri synced 2026-06-16 01:54:57 +02:00

all: set vanity import path

This commit is contained in:
Koichi Shiraishi 2020-03-08 20:51:27 +09:00
parent 497fed6dbd
commit 1524220eee
No known key found for this signature in database
GPG key ID: A71DFD3B4DA7A79B
6 changed files with 18 additions and 17 deletions

16
.gitattributes vendored
View file

@ -1,9 +1,11 @@
# go-language-server/uri project gitattributes file
# https://github.com/github/linguist#using-gitattributes
# https://github.com/github/linguist/blob/master/lib/linguist/languages.yml
# go.lsp.dev/uri project gitattributes file
# https://github.com/github/linguist#using-gitattributes
# https://github.com/github/linguist/blob/master/lib/linguist/languages.yml
docs linguist-documentation
*.pb.go linguist-generated
# To prevent CRLF breakages on Windows for fragile files, like testdata.
* -text
docs/ linguist-documentation
*.pb.go linguist-generated
*_gen.go linguist-generated
*_string.go linguist-generated
*_gen.go linguist-generated
vendor/* linguist-vendored

11
.gitignore vendored
View file

@ -1,9 +1,9 @@
# go-language-server/uri project generated files to ignore
# go.lsp.dev/uri project generated files to ignore
# if you want to ignore files created by your editor/tools,
# please consider a global .gitignore https://help.github.com/articles/ignoring-files
# please do not open a pull request to add something created by your editor or tools
# github/gitignore/go.gitignore
# github/gitignore/Go.gitignore
# Binaries for programs and plugins
*.exe
*.exe~
@ -17,6 +17,9 @@
# Output of the go coverage tool, specifically when used with LiteIDE
*.out
# Dependency directories (remove the comment below to include it)
vendor/
# Compiled Object files, Static and Dynamic libs (Shared Objects)
*.o
*.a
@ -40,11 +43,7 @@ _cgo_export.*
_testmain.go
# profile
*.prof
*.pprof
# coverage
coverage.*
# modules
vendor/*

View file

@ -20,7 +20,7 @@ linters-settings:
gofmt:
simplify: true
goimports:
local-prefixes: github.com/go-language-server/uri
local-prefixes: go.lsp.dev/uri
golint:
min-confidence: 0.3
govet:

View file

@ -7,7 +7,7 @@ Package uri is an implementation of the URI Uniform Resource Identifier(RFC3986)
<!-- badge links -->
[circleci]: https://app.circleci.com/pipelines/github/go-language-server/uri
[pkg.go.dev]: https://pkg.go.dev/github.com/go-language-server/uri
[pkg.go.dev]: https://pkg.go.dev/go.lsp.dev/uri
[module]: https://github.com/go-language-server/uri/releases/latest
[codecov]: https://codecov.io/gh/go-language-server/uri
[ga]: https://github.com/go-language-server/uri

2
doc.go
View file

@ -3,4 +3,4 @@
// license that can be found in the LICENSE file.
// Package uri is an implementation of the URI Uniform Resource Identifier(RFC3986) specification for Go.
package uri
package uri // import "go.lsp.dev/uri"

2
go.mod
View file

@ -1,4 +1,4 @@
module github.com/go-language-server/uri
module go.lsp.dev/uri
go 1.13