Gofmt formats Go programs. We run gofmt -s
on your code, where -s
is for the "simplify" command
No problems detected. Good job!
go vet
examines Go source code and reports suspicious constructs, such as Printf calls whose arguments do not align with the format string.
No problems detected. Good job!
Gocyclo calculates cyclomatic complexities of functions in Go source code.
The cyclomatic complexity of a function is calculated according to the following rules:
1 is the base complexity of a function
+1 for each 'if', 'for', 'case', '&&' or '||'
Go Report Card warns on functions with cyclomatic complexity > 15.
No problems detected. Good job!
Golint is a linter for Go source code.
No problems detected. Good job!
Checks whether your project has a LICENSE file.
No problems detected. Good job!
IneffAssign detects ineffectual assignments in Go code.
-
gqlplay/playground_test.go
- Line 10: warning: missing go.sum entry for module providing package github.com/onsi/ginkgo (imported by github.com/hiroaki-yamamoto/gqlplay); to add: (ineffassign)
- Line 12: warning: missing go.sum entry for module providing package github.com/onsi/gomega (imported by github.com/hiroaki-yamamoto/gqlplay); to add: (ineffassign)
- Line 10: warning: could not import github.com/onsi/ginkgo (invalid package name: "") (ineffassign)
- Line 12: warning: could not import github.com/onsi/gomega (invalid package name: "") (ineffassign)
- Line 15: warning: undeclared name: Describe (ineffassign)
- Line 17: warning: undeclared name: It (ineffassign)
- Line 25: warning: undeclared name: Expect (ineffassign)
- Line 25: warning: undeclared name: BeNil (ineffassign)
- Line 33: warning: undeclared name: Expect (ineffassign)
- Line 33: warning: undeclared name: BeNil (ineffassign)
- Line 34: warning: undeclared name: Expect (ineffassign)
- Line 34: warning: undeclared name: Equal (ineffassign)
- Line 35: warning: undeclared name: Expect (ineffassign)
- Line 35: warning: undeclared name: Equal (ineffassign)
- Line 36: warning: undeclared name: Expect (ineffassign)
- Line 36: warning: undeclared name: Equal (ineffassign)
- Line 39: warning: undeclared name: Describe (ineffassign)
- Line 40: warning: undeclared name: Context (ineffassign)
- Line 44: warning: undeclared name: Context (ineffassign)
- Line 46: warning: undeclared name: BeforeEach (ineffassign)
- Line 12: warning: "github.com/onsi/gomega" imported but not used (ineffassign)
- Line 10: warning: "github.com/onsi/ginkgo" imported but not used (ineffassign)
-
gqlplay/gqlplay_suite_test.go
- Line 6: warning: could not import github.com/onsi/ginkgo (invalid package name: "") (ineffassign)
- Line 7: warning: could not import github.com/onsi/gomega (invalid package name: "") (ineffassign)
- Line 11: warning: undeclared name: RegisterFailHandler (ineffassign)
- Line 11: warning: undeclared name: Fail (ineffassign)
- Line 12: warning: undeclared name: RunSpecs (ineffassign)
- Line 6: warning: "github.com/onsi/ginkgo" imported but not used (ineffassign)
- Line 7: warning: "github.com/onsi/gomega" imported but not used (ineffassign)
Misspell Finds commonly misspelled English words
No problems detected. Good job!