diff --git a/{{ cookiecutter.project_name.strip() }}/.golangci.yml b/{{ cookiecutter.project_name.strip() }}/.golangci.yml index 6b304df..d40e737 100644 --- a/{{ cookiecutter.project_name.strip() }}/.golangci.yml +++ b/{{ cookiecutter.project_name.strip() }}/.golangci.yml @@ -407,8 +407,8 @@ linters-settings: whitespace: # Tool for detection of leading and trailing whitespace - checks for unnecessary # newlines at the start and end of functions, if, for, etc. - multi-if: true # Enforces newlines (or comments) after multi-line if statement - multi-func: true # Enforces newlines (or comments) after multi-line functions + multi-if: false # Enforces newlines (or comments) after multi-line if statement + multi-func: false # Enforces newlines (or comments) after multi-line functions wrapcheck: # An array of strings that specify substrings of signatures to ignore.