-
Notifications
You must be signed in to change notification settings - Fork 162
/
lint_deps.bzl
57 lines (48 loc) · 1.75 KB
/
lint_deps.bzl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
load("@bazel_gazelle//:deps.bzl", "go_repository")
def lint_deps():
go_repository(
name = "com_github_jeanmertz_lll",
commit = "c7683829ec0c1f892b2d0468356597573afafb03",
importpath = "github.com/JeanMertz/lll",
)
go_repository(
name = "com_github_alexflint_go_arg",
commit = "f7c0423bd11ee80ab81d25c6d46f492998af8547",
importpath = "github.com/alexflint/go-arg",
)
go_repository(
name = "com_github_alexflint_go_scalar",
commit = "e80c3b7ed292b052c7083b6fd7154a8422c33f65",
importpath = "github.com/alexflint/go-scalar",
)
go_repository(
name = "com_github_client9_misspell",
commit = "c0b55c8239520f6b5aa15a0207ca8b28027ba49e",
importpath = "github.com/client9/misspell",
)
go_repository(
name = "com_github_kisielk_gotool",
commit = "80517062f582ea3340cd4baf70e86d539ae7d84d",
importpath = "github.com/kisielk/gotool",
)
go_repository(
name = "com_github_oncilla_gochecks",
commit = "8931c0e330384f8cfbff5ea8d260350ec4de893b",
importpath = "github.com/oncilla/gochecks", # serrorscheck
build_file_generation = "off",
)
go_repository(
name = "com_github_oncilla_ineffassign",
commit = "198c6a326229fbe8a5803f701ea9da06bc8c1776",
importpath = "github.com/Oncilla/ineffassign",
)
go_repository(
name = "com_github_pavius_impi",
commit = "c1cbdcb8df2b23af8530360d87ac9a7fabc48618",
importpath = "github.com/pavius/impi",
)
go_repository(
name = "com_github_jmhodges_bazel_gomock",
commit = "ff6c20a9b6978c52b88b7a1e2e55b3b86e26685b",
importpath = "github.com/jmhodges/bazel_gomock",
)