mirror of https://github.com/helm/helm.git
Restore lint rule for excluding meaningless name
This rule is needed for packages like 'util'. Changes to those packages trigger this rule. Signed-off-by: Matt Farina <matt.farina@suse.com>
This commit is contained in:
parent
93c02523bb
commit
0d359d44ea
|
@ -42,6 +42,14 @@ linters:
|
|||
- legacy
|
||||
- std-error-handling
|
||||
|
||||
rules:
|
||||
# This rule is triggered for packages like 'util'. When changes to those packages
|
||||
# occur it triggers this rule. This exclusion enables making changes to existing
|
||||
# packages.
|
||||
- linters:
|
||||
- revive
|
||||
text: 'var-naming: avoid meaningless package names'
|
||||
|
||||
warn-unused: true
|
||||
|
||||
settings:
|
||||
|
|
Loading…
Reference in New Issue