@@ -2799,47 +2799,48 @@ linters-settings:
2799
2799
2800
2800
sloglint :
2801
2801
# Enforce not mixing key-value pairs and attributes.
2802
- # https://github.com/go-simpler/sloglint?tab=readme-ov-file #no-mixed-arguments
2802
+ # https://github.com/go-simpler/sloglint#no-mixed-arguments
2803
2803
# Default: true
2804
2804
no-mixed-args : false
2805
2805
# Enforce using key-value pairs only (overrides no-mixed-args, incompatible with attr-only).
2806
- # https://github.com/go-simpler/sloglint?tab=readme-ov-file #key-value-pairs-only
2806
+ # https://github.com/go-simpler/sloglint#key-value-pairs-only
2807
2807
# Default: false
2808
2808
kv-only : true
2809
2809
# Enforce using attributes only (overrides no-mixed-args, incompatible with kv-only).
2810
- # https://github.com/go-simpler/sloglint?tab=readme-ov-file #attributes-only
2810
+ # https://github.com/go-simpler/sloglint#attributes-only
2811
2811
# Default: false
2812
2812
attr-only : true
2813
2813
# Enforce not using global loggers.
2814
2814
# Values:
2815
2815
# - "": disabled
2816
2816
# - "all": report all global loggers
2817
2817
# - "default": report only the default slog logger
2818
- # https://github.com/go-simpler/sloglint?tab=readme-ov-file #no-global
2818
+ # https://github.com/go-simpler/sloglint#no-global
2819
2819
# Default: ""
2820
2820
no-global : " all"
2821
2821
# Enforce using methods that accept a context.
2822
2822
# Values:
2823
2823
# - "": disabled
2824
2824
# - "all": report all contextless calls
2825
2825
# - "scope": report only if a context exists in the scope of the outermost function
2826
- # https://github.com/go-simpler/sloglint?tab=readme-ov-file #context-only
2826
+ # https://github.com/go-simpler/sloglint#context-only
2827
2827
# Default: ""
2828
2828
context : " all"
2829
2829
# Enforce using static values for log messages.
2830
- # https://github.com/go-simpler/sloglint?tab=readme-ov-file #static-messages
2830
+ # https://github.com/go-simpler/sloglint#static-messages
2831
2831
# Default: false
2832
2832
static-msg : true
2833
2833
# Enforce using constants instead of raw keys.
2834
- # https://github.com/go-simpler/sloglint?tab=readme-ov-file #no-raw-keys
2834
+ # https://github.com/go-simpler/sloglint#no-raw-keys
2835
2835
# Default: false
2836
2836
no-raw-keys : true
2837
2837
# Enforce a single key naming convention.
2838
2838
# Values: snake, kebab, camel, pascal
2839
- # https://github.com/go-simpler/sloglint?tab=readme-ov-file #key-naming-convention
2839
+ # https://github.com/go-simpler/sloglint#key-naming-convention
2840
2840
# Default: ""
2841
2841
key-naming-case : snake
2842
2842
# Enforce not using specific keys.
2843
+ # https://github.com/go-simpler/sloglint#forbidden-keys
2843
2844
# Default: []
2844
2845
forbidden-keys :
2845
2846
- time
@@ -2848,7 +2849,7 @@ linters-settings:
2848
2849
- source
2849
2850
- foo
2850
2851
# Enforce putting arguments on separate lines.
2851
- # https://github.com/go-simpler/sloglint?tab=readme-ov-file#forbidden-keys
2852
+ # https://github.com/go-simpler/sloglint#arguments-on-separate-lines
2852
2853
# Default: false
2853
2854
args-on-sep-lines : true
2854
2855
0 commit comments