Skip to content

Commit

Permalink
review: Semantic Line Breaks
Browse files Browse the repository at this point in the history
  • Loading branch information
ldez committed Jan 2, 2024
1 parent 9b379e5 commit be44eb1
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions .golangci.reference.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1917,24 +1917,25 @@ linters-settings:
# Default: false
disable-end-check: true

# Enable all checks. This overrides individual check settings.
# Enable all checks.
# This overrides individual check settings.
# Default: false
enable-all: true

# Enables a check that `span.RecordError` is called whenever a path to a return statement with an error
# is found. Developers should use `span.RecordError(err)` to create an exception event on the span.
# Enables a check that `span.RecordError` is called whenever a path to a return statement with an error is found.
# Developers should use `span.RecordError(err)` to create an exception event on the span.
# https://github.com/jjti/go-spancheck#checks
# Default: false
enable-record-error-check: true

# Enables a check that `span.SetStatus` is called whenever a path to a return statement with an error
# is found. Developers should use `span.SetStatus(codes.Error, msg)` to set the `status:error` attribute
# on the span.
# Enables a check that `span.SetStatus` is called whenever a path to a return statement with an error is found.
# Developers should use `span.SetStatus(codes.Error, msg)` to set the `status:error` attribute on the span.
# https://github.com/jjti/go-spancheck#checks
# Default: false
enable-set-status-check: true

# A slice of regexes for function signatures that, if found in the call path to an error return statement,
# A slice of regexes for function signatures that,
# if found in the call path to an error return statement,
# should silence the RecordError check.
# https://github.com/jjti/go-spancheck#configuration
# Default: []
Expand Down

0 comments on commit be44eb1

Please sign in to comment.