File tree Expand file tree Collapse file tree 4 files changed +24
-11
lines changed
Expand file tree Collapse file tree 4 files changed +24
-11
lines changed Original file line number Diff line number Diff line change 11---
2+ linters :
3+ enable :
4+ - misspell
5+ - revive
6+
27linters-settings :
38 errcheck :
4- exclude : scripts/errcheck_excludes.txt
9+ exclude-functions :
10+ # Don't flag lines such as "io.Copy(io.Discard, resp.Body)".
11+ - io.Copy
12+ # Used in HTTP handlers, any error is handled by the server itself.
13+ - (net/http.ResponseWriter).Write
14+ # Never check for logger errors.
15+ - (github.com/go-kit/log.Logger).Log
16+ revive :
17+ rules :
18+ # https://github.com/mgechev/revive/blob/master/RULES_DESCRIPTIONS.md#unused-parameter
19+ - name : unused-parameter
20+ severity : warning
21+ disabled : true
Original file line number Diff line number Diff line change 11## master / unreleased
22
3- * [ BUGFIX] /clients endpoint return application/json as Content-Type
3+ ## 0.2.0 / 2024-03-28
4+
5+ * [ FEATURE] Implement flags to control retry delays #83
6+ * [ ENHANCEMENT] Add scrape_id to error log #120
7+ * [ BUGFIX] /clients endpoint return application/json as Content-Type #121
48
59## 0.1.0 / 2019-07-29
610
Original file line number Diff line number Diff line change 1- 0.1 .0
1+ 0.2 .0
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments