mirror of
https://github.com/laravel-ls/uri
synced 2026-07-03 08:03:40 +02:00
all: set vanity import path
This commit is contained in:
parent
497fed6dbd
commit
1524220eee
6 changed files with 18 additions and 17 deletions
10
.gitattributes
vendored
10
.gitattributes
vendored
|
|
@ -1,9 +1,11 @@
|
||||||
# go-language-server/uri project gitattributes file
|
# go.lsp.dev/uri project gitattributes file
|
||||||
# https://github.com/github/linguist#using-gitattributes
|
# https://github.com/github/linguist#using-gitattributes
|
||||||
# https://github.com/github/linguist/blob/master/lib/linguist/languages.yml
|
# https://github.com/github/linguist/blob/master/lib/linguist/languages.yml
|
||||||
|
|
||||||
docs linguist-documentation
|
# To prevent CRLF breakages on Windows for fragile files, like testdata.
|
||||||
|
* -text
|
||||||
|
|
||||||
|
docs/ linguist-documentation
|
||||||
*.pb.go linguist-generated
|
*.pb.go linguist-generated
|
||||||
*_string.go linguist-generated
|
|
||||||
*_gen.go linguist-generated
|
*_gen.go linguist-generated
|
||||||
vendor/* linguist-vendored
|
*_string.go linguist-generated
|
||||||
|
|
|
||||||
11
.gitignore
vendored
11
.gitignore
vendored
|
|
@ -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,
|
# if you want to ignore files created by your editor/tools,
|
||||||
# please consider a global .gitignore https://help.github.com/articles/ignoring-files
|
# 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
|
# 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
|
# Binaries for programs and plugins
|
||||||
*.exe
|
*.exe
|
||||||
*.exe~
|
*.exe~
|
||||||
|
|
@ -17,6 +17,9 @@
|
||||||
# Output of the go coverage tool, specifically when used with LiteIDE
|
# Output of the go coverage tool, specifically when used with LiteIDE
|
||||||
*.out
|
*.out
|
||||||
|
|
||||||
|
# Dependency directories (remove the comment below to include it)
|
||||||
|
vendor/
|
||||||
|
|
||||||
# Compiled Object files, Static and Dynamic libs (Shared Objects)
|
# Compiled Object files, Static and Dynamic libs (Shared Objects)
|
||||||
*.o
|
*.o
|
||||||
*.a
|
*.a
|
||||||
|
|
@ -40,11 +43,7 @@ _cgo_export.*
|
||||||
_testmain.go
|
_testmain.go
|
||||||
|
|
||||||
# profile
|
# profile
|
||||||
*.prof
|
|
||||||
*.pprof
|
*.pprof
|
||||||
|
|
||||||
# coverage
|
# coverage
|
||||||
coverage.*
|
coverage.*
|
||||||
|
|
||||||
# modules
|
|
||||||
vendor/*
|
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@ linters-settings:
|
||||||
gofmt:
|
gofmt:
|
||||||
simplify: true
|
simplify: true
|
||||||
goimports:
|
goimports:
|
||||||
local-prefixes: github.com/go-language-server/uri
|
local-prefixes: go.lsp.dev/uri
|
||||||
golint:
|
golint:
|
||||||
min-confidence: 0.3
|
min-confidence: 0.3
|
||||||
govet:
|
govet:
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,7 @@ Package uri is an implementation of the URI Uniform Resource Identifier(RFC3986)
|
||||||
|
|
||||||
<!-- badge links -->
|
<!-- badge links -->
|
||||||
[circleci]: https://app.circleci.com/pipelines/github/go-language-server/uri
|
[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
|
[module]: https://github.com/go-language-server/uri/releases/latest
|
||||||
[codecov]: https://codecov.io/gh/go-language-server/uri
|
[codecov]: https://codecov.io/gh/go-language-server/uri
|
||||||
[ga]: https://github.com/go-language-server/uri
|
[ga]: https://github.com/go-language-server/uri
|
||||||
|
|
|
||||||
2
doc.go
2
doc.go
|
|
@ -3,4 +3,4 @@
|
||||||
// license that can be found in the LICENSE file.
|
// 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 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
2
go.mod
|
|
@ -1,4 +1,4 @@
|
||||||
module github.com/go-language-server/uri
|
module go.lsp.dev/uri
|
||||||
|
|
||||||
go 1.13
|
go 1.13
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue