forked from knative/operator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitattributes
22 lines (17 loc) · 856 Bytes
/
.gitattributes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# This file is documented at https://git-scm.com/docs/gitattributes.
# Linguist-specific attributes are documented at
# https://github.com/github/linguist.
# (Operator-specific) vendored release files
/cmd/operator/kodata/** linguist-generated
# General-purpose annotations of generated/vendored code:
**/zz_generated.*.go linguist-generated=true
/pkg/client/** linguist-generated=true
/third_party/** linguist-generated
/vendor/** linguist-vendored
# coverage-excluded is an attribute used to explicitly exclude a path from being included in code
# coverage. If a path is marked as linguist-generated already, it will be implicitly excluded and
# there is no need to add the coverage-excluded attribute
/pkg/**/testing/** coverage-excluded=true
/vendor/** coverage-excluded=true
/test/** coverage-excluded=true
/cmd/**/main.go coverage-excluded=true