chore(linter): remove depguard

Amolith created

Change summary

.golangci.toml | 30 +++++-------------------------
1 file changed, 5 insertions(+), 25 deletions(-)

Detailed changes

.golangci.toml 🔗

@@ -20,7 +20,6 @@ enable = [
   'contextcheck',
   'cyclop',
   'decorder',
-  'depguard',
   'dogsled',
   'dupl',
   'dupword',
@@ -83,23 +82,13 @@ enable = [
   'wastedassign',
   'whitespace',
   'wrapcheck',
-  'wsl'
+  'wsl',
 ]
 
 [linters.exclusions]
 generated = 'lax'
-presets = [
-  'comments',
-  'common-false-positives',
-  'legacy',
-  'std-error-handling'
-]
-paths = [
-  'frontend',
-  'third_party$',
-  'builtin$',
-  'examples$'
-]
+presets = ['comments', 'common-false-positives', 'legacy', 'std-error-handling']
+paths = ['frontend', 'third_party$', 'builtin$', 'examples$']
 
 [issues]
 max-issues-per-linter = 0
@@ -108,17 +97,8 @@ new = false
 fix = false
 
 [formatters]
-enable = [
-  'gci',
-  'gofumpt',
-  'goimports'
-]
+enable = ['gci', 'gofumpt', 'goimports']
 
 [formatters.exclusions]
 generated = 'lax'
-paths = [
-  'frontend',
-  'third_party$',
-  'builtin$',
-  'examples$'
-]
+paths = ['frontend', 'third_party$', 'builtin$', 'examples$']