We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 596aae7 commit 2f9ce15Copy full SHA for 2f9ce15
1 file changed
.golangci.yml
@@ -29,6 +29,7 @@ linters:
29
- goconst
30
- gocritic
31
- gosmopolitan
32
+ - lll
33
- loggercheck
34
- makezero
35
- misspell
@@ -102,7 +103,6 @@ linters:
102
103
- dupl
104
- errcheck
105
- gocyclo
- - lll
106
- mnd
107
- unparam
108
- wsl
@@ -111,6 +111,12 @@ linters:
111
- linters:
112
113
path: cli/flags/shared
114
+ # Incrementally linting lines that are too long to ensure that
115
+ # we don't have conflicts on every file in the codebase while
116
+ # trying to get this merged in.
117
+ - linters:
118
119
+ path-except: '^(internal/awshelper/|internal/cas/)'
120
paths:
121
- docs
122
- _ci
0 commit comments