- 6d7c314 Implement "..." wildcard for packages and paths. by Markus Zimmermann · 10 years ago
- 3fd0484 Sort problems. by Markus Zimmermann · 10 years ago
- e23e81d Use file-level scope for untyped constant checking. by David Symonds · 10 years ago
- 1de6767 Avoid a confusing later panic if linting files across packages. by David Symonds · 10 years ago
- 39135ba Use typechecker to recognise untyped constant expressions. by David Symonds · 10 years ago
- ff22a87 Hang on to the type information even when the typechecker fails. by David Symonds · 10 years ago
- 3f17141 Set a no-op error reporter to encourage the typechecker to do more work. by David Symonds · 10 years ago
- ae65d27 Avoid panic when an ast.Node is in a different file. by David Symonds · 10 years ago
- 209d47f Permit linting of entire packages. by David Symonds · 10 years ago
- a9a6f59 Use typechecked information to suppress type inference warning, where possible. by David Symonds · 10 years ago
- c8f2dfe Disable reporting of typechecking errors. by David Symonds · 10 years ago
- 54857da Hook up typechecker. by David Symonds · 10 years ago
- 4b1924a Add reference link for stutter check. by David Symonds · 10 years ago
- af5cfac Don't check for stutter of method names. by David Symonds · 10 years ago
- f93c74e Add GUID and UUID as common initialisms. by Lucas Clemente · 10 years ago
- 3d26dc3 Add SMTP as common initialism. by Philip Nelson · 10 years ago
- 8628ede Fix error message generated for kFoo names. by David Symonds · 10 years ago
- 76aead9 Add URI as a common initialism. by David Symonds · 10 years ago
- 3b88232 Flag names that stutter. by David Symonds · 10 years ago
- 7430178 Provide lint problem categorisation. by David Symonds · 10 years ago
- 9646f1a Add a lint check for functions which return errors but the error type isn't the last type in the return list. by James Chacon · 10 years ago
- ac6833c Let golint ignore a function whose name starts "Benchmark" when it checks function declarations. by yosssi · 10 years ago
- 2ade831 Add a blank line in a test so that gofmt won't break the magic comment's location. by David Symonds · 10 years ago
- 8ebb13a Improve message for underscore receiver names. by David Symonds · 10 years ago
- 115818a Reduce confidence in error string leading capital check. by David Symonds · 11 years ago
- 49efcbc Check the param/result names of interface methods. by David Symonds · 11 years ago
- 28e13f3 Add HTTPS, SSH and TLS as common initialisms. by Geert-Johan Riemer · 11 years ago
- 3b57765 error output now compatible with vim quickfix by James Tucker · 11 years ago
- fcc97d1 Recommend replacing "x := make([]T, 0)" with "var x []T". by David Symonds · 11 years ago
- 83b89d4 Add VM as a common initialism. by David Symonds · 11 years ago
- e664f20 Don't lint names of interface methods. by David Symonds · 11 years ago
- 1980f53 Don't flag var typing when the RHS is an untyped constant by David Symonds · 11 years ago
- e1d65c7 Update link base to new location. by David Symonds · 11 years ago
- 16642b0 Add links to style guide. by David Symonds · 11 years ago
- 29cb4d8 Add SLA as a common initialism. by David Symonds · 11 years ago
- 2280b9f Add autoload cookie for lazy loading. by Syohei YOSHIDA · 11 years ago
- bd73aea Emacs: ELPA compatibility by Yasuyuki Oka · 11 years ago
- a78e5d7 Minor refactoring. by David Symonds · 11 years ago
- 9946766 Suggest replacing "x += 1" with "x++", and "y -= 1" with "y--". by David Symonds · 11 years ago
- bdf90bd Add TTL as a common initialism. by David Symonds · 11 years ago
- 32b6cb7 Remove a TODO about supporting stdin. by David Symonds · 11 years ago
- 951d8c9 Don't suggest removing a leading underscore. by David Symonds · 11 years ago
- 2292cea Suggest moving short variable declarations to their own line if needed to keep normal code flow outdented. by David Symonds · 11 years ago
- 22f4d5e golint: Permit starting error strings with initialisms. by Bartosz Oler · 11 years ago
- e6e2854 Add a few more common initialisms: LHS, RHS, CPU, CSS, QPS, RAM. by David Symonds · 11 years ago
- 72da1f2 Add DNS and UI as common initialisms. by David Symonds · 11 years ago
- 90e8f13 Fix handling of digits adjacent to initialisms. by David Symonds · 11 years ago
- a4894d2 Add golint for emacs. by Ato ARAKI · 11 years ago
- 1ad6a0e Update lint.go to add UTF8 as initialism. by Geert-Johan Riemer · 11 years ago
- 04049f5 Check that error strings aren't capitalized and don't end with punctuation. by David Symonds · 11 years ago
- 6999fe1 Check that names of global error vars are named like ErrFoo or errFoo. by David Symonds · 11 years ago
- 190cbab Explain and strengthen warning about blank imports in libraries. by David Symonds · 11 years ago
- d24c9f5 Check for inconsistent receiver names. by Damien Neil · 11 years ago
- 1638664 Add UID as a common initialism. by David Crawshaw · 11 years ago
- fae712f Check for receivers named 'this' or 'self'. by Damien Neil · 11 years ago
- 42babb9 Check names of range vars and add more test cases for var declarations. by David Symonds · 11 years ago
- c8345ef Check names of interface methods. by David Symonds · 11 years ago
- 3a3fe48 Don't check names in non-declaration assignment statements. by David Symonds · 11 years ago
- b3d0e42 Check names of func/method arguments. by David Symonds · 11 years ago
- fa98834 Suggest comment on const block for uncommented exported consts. by David Symonds · 11 years ago
- 113fe78 Don't flag multi-var declarations when only the first name is exported. by David Symonds · 11 years ago
- fbae681 Simplify Vim setup instructions. by David Symonds · 11 years ago
- 00ca089 Compare golint and gofmt. by David Symonds · 11 years ago
- 743f9e9 Add a lint warning for blank imports in library packages. by Michael Fromberger · 11 years ago
- 99fc497 Suggest replacing errors.New(fmt.Sprintf(...)) with fmt.Errorf(...). by David Symonds · 11 years ago
- 8f67d93 Flag redundant range clauses. by David Symonds · 11 years ago
- dedaae4 Don't warn about negative/parenthesized int literals for non-int var decls. by David Symonds · 11 years ago
- 8f08529 Clarify that a reasonable response to a missing doc comment on an exported name is to unexport it. by David Symonds · 11 years ago
- dca1b5a allow underscores in test method names by Will Norris · 11 years ago
- 0b3f12a Add RPC as a common initialism. by David Symonds · 11 years ago
- b188792 Add Contributions section to README to point at the CLA. by David Symonds · 11 years ago
- 6349632 Update README. by Song Gao · 11 years ago
- 13bede7 Flag ALL_CAPS and kLeadingKay names specifically so they get good messages. by David Symonds · 11 years ago
- ab27019 Add EOF as a common initialism. by David Symonds · 11 years ago
- d182c9c Add vim plugin by mattn · 11 years ago
- 375fc83 Update README with correct grammar and a better sentence about automation. by David Symonds · 11 years ago
- e03c7b8 Added the ability to scan directories recursively. by AeroNotix · 11 years ago
- 3481cad Add installation instructions (again). by David Symonds · 11 years ago
- 72a071e Don't flag underscores in Examples. by David Symonds · 11 years ago
- ee2baab Add installation instructions. by David Symonds · 11 years ago
- dbd4ec6 Remove from testdata files some junk from a previous test driver. by David Symonds · 11 years ago
- 9bdb38d Update README to compare golint and govet, and to point at issue tracker. by David Symonds · 11 years ago
- 7fab513 Include filename in reading/parsing errors. by David Symonds · 11 years ago
- 1a2c6a3 Add XML as an initialism. by David Symonds · 11 years ago
- a2e61ea Initial export of golint. by David Symonds · 11 years ago
- e0192f7 Initial commit. by David Symonds · 11 years ago