...
1# Files that should be ignored by tools which do not want to consider generated
2# code.
3#
4# https://github.com/kubernetes/test-infra/blob/master/prow/plugins/size/size.go
5#
6# This file is a series of lines, each of the form:
7# <type> <name>
8#
9# Type can be:
10# path - an exact path to a single file
11# file-name - an exact leaf filename, regardless of path
12# path-prefix - a prefix match on the file path
13# file-prefix - a prefix match of the leaf filename (no path)
14# paths-from-repo - read a file from the repo and load file paths
15#
16
17file-prefix zz_generated.
18
19file-name types.generated.go
20file-name generated.pb.go
21file-name generated.proto
22file-name types_swagger_doc_generated.go
23
24path-prefix vendor/
25path-prefix pkg/generated/
View as plain text