|
1 | 1 | linters:
|
2 | 2 | enable:
|
3 |
| - - bodyclose # Checks whether HTTP response body is closed successfully |
4 |
| - - errorlint # Linter for that can be used to find code that will cause problems with the error wrapping scheme introduced in Go 1.13. |
5 |
| - - exportloopref # Checks for pointers to enclosing loop variables |
6 |
| - - gocritic # Provides diagnostics that check for bugs, performance and style issues. |
7 |
| - - gofmt # Gofmt checks whether code was gofmt-ed. By default this tool runs with -s option to check for code simplification |
8 |
| - - gofumpt # Gofumpt checks whether code was gofumpt-ed. Enforces a stricter format than gofmt. |
9 |
| - - goimports # In addition to fixing imports, goimports also formats your code in the same style as gofmt. |
10 |
| - - misspell # Finds commonly misspelled English words in comments |
11 |
| - - prealloc # Finds slice declarations that could potentially be preallocated |
12 |
| - - predeclared # Find code that shadows one of Go's predeclared identifiers |
13 |
| - - revive # Fast, configurable, extensible, flexible, and beautiful linter for Go. Drop-in replacement of golint. |
14 |
| - - testpackage # Linter that makes you use a separate _test package |
15 |
| - - wastedassign # Finds wasted assignment statements. |
16 |
| - - whitespace # Tool for detection of leading and trailing whitespace |
| 3 | + - bodyclose # Checks whether HTTP response body is closed successfully |
| 4 | + - errorlint # Linter for that can be used to find code that will cause problems with the error wrapping scheme introduced in Go 1.13. |
| 5 | + - copyloopvar # Checks for pointers to enclosing loop variables |
| 6 | + - gocritic # Provides diagnostics that check for bugs, performance and style issues. |
| 7 | + - gofmt # Gofmt checks whether code was gofmt-ed. By default this tool runs with -s option to check for code simplification |
| 8 | + - gofumpt # Gofumpt checks whether code was gofumpt-ed. Enforces a stricter format than gofmt. |
| 9 | + - goimports # In addition to fixing imports, goimports also formats your code in the same style as gofmt. |
| 10 | + - misspell # Finds commonly misspelled English words in comments |
| 11 | + - prealloc # Finds slice declarations that could potentially be preallocated |
| 12 | + - predeclared # Find code that shadows one of Go's predeclared identifiers |
| 13 | + - revive # Fast, configurable, extensible, flexible, and beautiful linter for Go. Drop-in replacement of golint. |
| 14 | + - testpackage # Linter that makes you use a separate _test package |
| 15 | + - wastedassign # Finds wasted assignment statements. |
| 16 | + - whitespace # Tool for detection of leading and trailing whitespace |
0 commit comments