From bee9e7c6ccaae6fb2500fe216486ac3fefedcdd1 Mon Sep 17 00:00:00 2001 From: Oleksandr Redko Date: Fri, 10 May 2024 21:51:07 +0300 Subject: [PATCH] Remove gci linter because it breaks import comments --- .golangci.yaml | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/.golangci.yaml b/.golangci.yaml index 227d26731f..6c0fdd3289 100644 --- a/.golangci.yaml +++ b/.golangci.yaml @@ -19,24 +19,6 @@ linters-settings: govet: enable: - nilness - gci: - # Section configuration to compare against. - # Section names are case-insensitive and may contain parameters in (). - # The default order of sections is `standard > default > custom > blank > dot > alias`, - # If `custom-order` is `true`, it follows the order of `sections` option. - # Default: ["standard", "default"] - sections: - - standard # Standard section: captures all standard packages. - - default # Default section: contains all imports that could not be matched to another section type. - - prefix(sigs.k8s.io/kueue) # Custom section: groups all imports with the specified Prefix. - # Skip generated files. - # Default: true - skip-generated: true - # Enable custom order of sections. - # If `true`, make the section order the same as the order of `sections`. - # Default: false - custom-order: true - # Settings for enabling and disabling linters linters: