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 1
1
---
2
+ linters :
3
+ enable :
4
+ - misspell
5
+ - revive
6
+
2
7
linters-settings :
3
8
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 1
1
## master / unreleased
2
2
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
4
8
5
9
## 0.1.0 / 2019-07-29
6
10
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