File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ LINTIGNOREDEPS='vendor/.+\.go'
88LINTIGNOREPKGCOMMENT ='service/[^/]+/doc_custom.go:.+package comment should be of the form'
99LINTIGNOREENDPOINTS ='aws/endpoints/defaults.go:.+(method|const) .+ should be '
1010LINTIGNORESINGLEFIGHT ='internal/sync/singleflight/singleflight.go:.+error should be the last type'
11+ LINTIGNOREPROTO ="service/smithyprototype/.+\.go:.+don't use underscores in Go names"
1112UNIT_TEST_TAGS ="example codegen awsinclude"
1213ALL_TAGS ="example codegen awsinclude integration perftest sdktool"
1314
@@ -152,7 +153,8 @@ lint:
152153 -e ${LINTIGNOREINFLECTS3UPLOAD} \
153154 -e ${LINTIGNOREPKGCOMMENT} \
154155 -e ${LINTIGNOREENDPOINTS} \
155- -e ${LINTIGNORESINGLEFIGHT} ` ; \
156+ -e ${LINTIGNORESINGLEFIGHT} \
157+ -e ${LINTIGNOREPROTO} ` ; \
156158 echo " $$ dolint" ; \
157159 if [ " $$ dolint" != " " ]; then exit 1; fi
158160
You can’t perform that action at this time.
0 commit comments