Skip to content

Commit e25c231

Browse files
committed
chore: update implementation
1 parent 9596f2c commit e25c231

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.golangci.next.reference.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1795,6 +1795,7 @@ linters:
17951795
- identical # Identifies interfaces in the same package that have identical method sets.
17961796
- unused # Identifies interfaces that are not used anywhere in the same package where the interface is defined.
17971797
- opaque # Identifies functions that return interfaces, but the actual returned value is always a single concrete implementation.
1798+
- unexported # Identifies interfaces that are not exported but are used in exported functions or methods.
17981799
settings:
17991800
unused:
18001801
# List of packages path to exclude from the check.

jsonschema/golangci.next.jsonschema.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -661,7 +661,8 @@
661661
"enum": [
662662
"identical",
663663
"unused",
664-
"opaque"
664+
"opaque",
665+
"unexported"
665666
]
666667
},
667668
"tagliatelle-cases": {

0 commit comments

Comments
 (0)