mirror of
				https://gitea.com/Lydanne/buildx.git
				synced 2025-11-04 10:03:42 +08:00 
			
		
		
		
	- release notes: https://github.com/spf13/cobra/releases/tag/v1.8.0 - full diff: https://github.com/spf13/cobra/compare/v1.7.0...v1.8.0 Release notes highlights: Features - Support usage as plugin for tools like kubectl - this means that programs that utilize a "plugin-like" structure have much better support and usage (like for completions, command paths, etc.) - Move documentation sources to site/content - Add 'one required flag' group - this includes a new MarkFlagsOneRequired API for flags which can be used to mark a flag group as required and cause command failure if at least one is not used when invoked. - Customizable error message prefix - This adds the SetErrPrefix and ErrPrefix APIs on the Command struct to allow for setting a custom prefix for errors - feat: add getters for flag completions - Feature: allow running persistent run hooks of all parents - Improve API to get flag completion function Bug fixes - Fix typo in fish completions - Fix grammar: 'allows to' - powershell: escape variable with curly brackets - Don't complete --help flag when flag parsing disabled - Replace all non-alphanumerics in active help env var program prefix Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
		
			
				
	
	
		
			63 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			63 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
# Copyright 2013-2023 The Cobra Authors
 | 
						|
#
 | 
						|
# Licensed under the Apache License, Version 2.0 (the "License");
 | 
						|
# you may not use this file except in compliance with the License.
 | 
						|
# You may obtain a copy of the License at
 | 
						|
#
 | 
						|
#      http://www.apache.org/licenses/LICENSE-2.0
 | 
						|
#
 | 
						|
# Unless required by applicable law or agreed to in writing, software
 | 
						|
# distributed under the License is distributed on an "AS IS" BASIS,
 | 
						|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 | 
						|
# See the License for the specific language governing permissions and
 | 
						|
# limitations under the License.
 | 
						|
 | 
						|
run:
 | 
						|
  deadline: 5m
 | 
						|
 | 
						|
linters:
 | 
						|
  disable-all: true
 | 
						|
  enable:
 | 
						|
    #- bodyclose
 | 
						|
    # - deadcode ! deprecated since v1.49.0; replaced by 'unused'
 | 
						|
    #- depguard
 | 
						|
    #- dogsled
 | 
						|
    #- dupl
 | 
						|
    - errcheck
 | 
						|
    #- exhaustive
 | 
						|
    #- funlen
 | 
						|
    - gas
 | 
						|
    #- gochecknoinits
 | 
						|
    - goconst
 | 
						|
    #- gocritic
 | 
						|
    #- gocyclo
 | 
						|
    #- gofmt
 | 
						|
    - goimports
 | 
						|
    - golint
 | 
						|
    #- gomnd
 | 
						|
    #- goprintffuncname
 | 
						|
    #- gosec
 | 
						|
    #- gosimple
 | 
						|
    - govet
 | 
						|
    - ineffassign
 | 
						|
    - interfacer
 | 
						|
    #- lll
 | 
						|
    - maligned
 | 
						|
    - megacheck
 | 
						|
    #- misspell
 | 
						|
    #- nakedret
 | 
						|
    #- noctx
 | 
						|
    #- nolintlint
 | 
						|
    #- rowserrcheck
 | 
						|
    #- scopelint
 | 
						|
    #- staticcheck
 | 
						|
    #- structcheck ! deprecated since v1.49.0; replaced by 'unused'
 | 
						|
    #- stylecheck
 | 
						|
    #- typecheck
 | 
						|
    - unconvert
 | 
						|
    #- unparam
 | 
						|
    - unused
 | 
						|
    # - varcheck ! deprecated since v1.49.0; replaced by 'unused'
 | 
						|
    #- whitespace
 | 
						|
  fast: false
 |