Modify linter and add plugin cmd

This commit is contained in:
Zachary Yedidia
2020-01-30 17:51:04 -05:00
parent 016b8dcc4c
commit 35e3bddea0
3 changed files with 29 additions and 1 deletions

File diff suppressed because one or more lines are too long

View File

@@ -417,3 +417,7 @@ func IsNonAlphaNumeric(c rune) bool {
func ParseSpecial(s string) string {
return strings.Replace(s, "\\t", "\t", -1)
}
func String(s []byte) string {
return string(s)
}