diff --git a/.golangci.yml b/.golangci.yml index e46c8bfc49..c9148772b2 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -11,4 +11,12 @@ linters: - typecheck - unused - varcheck - - misspell \ No newline at end of file + - misspell + - lll +linters-settings: + lll: + # max line length, lines longer will be reported. Default is 120. + # '\t' is counted as 1 character by default, and can be changed with the tab-width option + line-length: 120 + # tab width in spaces. Default to 1. + tab-width: 1