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	BUILD
20file-name	types.generated.go
21file-name	generated.pb.go
22file-name	generated.proto
23file-name	types_swagger_doc_generated.go
24
25path-prefix	vendor/
26path-prefix	pkg/generated/
27