Skip to content

Commit 15f32a8

Browse files
committed
build: disable misspell, upstream bug prevents builds
1 parent 6d359db commit 15f32a8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

build/ci.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,8 @@ func doTest(cmdline []string) {
292292
// Run analysis tools before the tests.
293293
build.MustRun(goTool("vet", packages...))
294294
if *misspell {
295-
spellcheck(packages)
295+
// TODO(karalabe): Reenable after false detection is fixed: https://github.com/client9/misspell/issues/105
296+
// spellcheck(packages)
296297
}
297298
// Run the actual tests.
298299
gotest := goTool("test", buildFlags(env)...)

0 commit comments

Comments
 (0)