File tree Expand file tree Collapse file tree 8 files changed +20
-15
lines changed Expand file tree Collapse file tree 8 files changed +20
-15
lines changed Original file line number Diff line number Diff line change 9
9
executor :
10
10
name : golang/buster
11
11
tag : " 1.14-buster"
12
- working_directory : /go/src/github.com/go-language-server /jsonrpc2
12
+ working_directory : /go/src/go.lsp.dev /jsonrpc2
13
13
environment :
14
14
GO111MODULE : " on"
15
15
parallelism : 2
34
34
executor :
35
35
name : golang/buster
36
36
tag : " 1.14-buster"
37
- working_directory : /go/src/github.com/go-language-server /jsonrpc2
37
+ working_directory : /go/src/go.lsp.dev /jsonrpc2
38
38
environment :
39
39
GO111MODULE : " on"
40
40
parallelism : 2
Original file line number Diff line number Diff line change 1
- (*github.com/go-language-server /jsonrpc2.Request).Reply
1
+ (*go.lsp.dev /jsonrpc2.Request).Reply
Original file line number Diff line number Diff line change 1
- # jsonrpc2 project gitattributes file
2
- # https://github.com/github/linguist#using-gitattributes
1
+ # go.lsp.dev/jsonrpc2 project gitattributes file
2
+ # https://github.com/github/linguist#using-gitattributes
3
+ # https://github.com/github/linguist/blob/master/lib/linguist/languages.yml
3
4
4
- docs linguist-documentation
5
- * .pb.go linguist-generated
5
+ # To prevent CRLF breakages on Windows for fragile files, like testdata.
6
+ * - text
7
+
8
+ docs / linguist-documentation
9
+ * .pb.go linguist-generated
10
+ * _gen.go linguist-generated
6
11
* _string.go linguist-generated
Original file line number Diff line number Diff line change 1
- # jsonrpc2 project generated files to ignore
1
+ # go.lsp.dev/ jsonrpc2 project generated files to ignore
2
2
# if you want to ignore files created by your editor/tools,
3
3
# please consider a global .gitignore https://help.github.com/articles/ignoring-files
4
4
# please do not open a pull request to add something created by your editor or tools
17
17
# Output of the go coverage tool, specifically when used with LiteIDE
18
18
* .out
19
19
20
+ # Dependency directories (remove the comment below to include it)
21
+ vendor /
22
+
20
23
# Compiled Object files, Static and Dynamic libs (Shared Objects)
21
24
* .o
22
25
* .a
@@ -44,6 +47,3 @@ _testmain.go
44
47
45
48
# coverage
46
49
coverage. *
47
-
48
- # modules
49
- vendor /*
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ linters-settings:
40
40
gofmt :
41
41
simplify : true
42
42
goimports :
43
- local-prefixes : github.com/go-language-server /jsonrpc2
43
+ local-prefixes : go.lsp.dev /jsonrpc2
44
44
golint :
45
45
min-confidence : 0.3
46
46
govet :
Original file line number Diff line number Diff line change 3
3
// license that can be found in the LICENSE file.
4
4
5
5
// Package jsonrpc2 is an implementation of the JSON-RPC 2 specification for Go.
6
- package jsonrpc2
6
+ package jsonrpc2 // import "go.lsp.dev/jsonrpc2"
Original file line number Diff line number Diff line change 1
- module github.com/go-language-server /jsonrpc2
1
+ module go.lsp.dev /jsonrpc2
2
2
3
3
go 1.13
4
4
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ import (
17
17
18
18
"go.uber.org/zap"
19
19
20
- "github.com/go-language-server /jsonrpc2"
20
+ "go.lsp.dev /jsonrpc2"
21
21
)
22
22
23
23
var logRPC = flag .Bool ("logrpc" , false , "Enable jsonrpc2 communication logging" )
You can’t perform that action at this time.
0 commit comments