Nishanth Shanmugham
Nishanth Shanmugham
Currently, we only support social icons for twitter, github, linkedin, email, and RSS. We could incrementally add support for: - [ ] telegram - [ ] pinterest - [ ]...
the calendar param was added in https://github.com/nishanths/cocoa-hugo-theme/commit/2338510f39cb76da87311fdeb6c34cd73e3f2632
Consider adding support for the built-in syntax highlighter. See the release notes at https://github.com/gohugoio/hugo/releases/tag/v0.28 for details.
The live example site fails to render the About and the Code page: https://themes.gohugo.io/about/ But they works correctly when serving the example site locally.
Package astutil has a `DeleteNamedImport` function, which looks like it could be used to replace most of the de-duplication code in this command. https://godoc.org/golang.org/x/tools/go/ast/astutil#DeleteNamedImport
define behavior when both "ignore" and "enforce" comment is present on the same switch/map statement
Current proposal: report an error diagnostic when this is the case.
It is unclear to me at this point what effect the upcoming go1.18 type parameter change will have on this analyzer. We may need to define the analyzer's behavior when...
```go type M int const ( A M = iota B ) func quux(v M) { switch v { case M(A): } } ``` For the program above, exhaustive currently...