Skip to content

Commit

Permalink
Note that exhaustruct struct regular expressions are expected to ma…
Browse files Browse the repository at this point in the history
…tch the entire `package/name/structname`
  • Loading branch information
magnetikonline committed Nov 9, 2023
1 parent 4200194 commit 1fad83b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .golangci.reference.yml
Original file line number Diff line number Diff line change
Expand Up @@ -356,13 +356,15 @@ linters-settings:
- 'example.com/package.ExampleStruct'

exhaustruct:
# List of regular expressions to match struct packages and names.
# List of regular expressions to match struct packages and their names.
# Regular expressions must match complete canonical struct package/name/structname.
# If this list is empty, all structs are tested.
# Default: []
include:
- '.*\.Test'
- 'example\.com/package\.ExampleStruct[\d]{1,2}'
# List of regular expressions to exclude struct packages and names from check.
# List of regular expressions to exclude struct packages and their names from checks.
# Regular expressions must match complete canonical struct package/name/structname.
# Default: []
exclude:
- 'cobra\.Command$'
Expand Down

0 comments on commit 1fad83b

Please sign in to comment.