ayan george

Results 2 issues of ayan george

If the program requires GNU Make, the Makefile should be named GNUmakefile.

SA6005 should detect comparisons like the following: ``` if strings.ToLower(x) == "lowercaseliteral" { ... } ``` and suggest using `strings.EqualFold(x, "lowercaseliteral")`. Likewise, SA6005 should detect the `bytes` equivalents so: ```...

enhancement