Remove default rule ignoring dotfiles

https://github.com/kubernetes/helm/issues/4058

<CHARTNAME> isn't being updated in dotfiles due to the exclusion here.
pull/4064/head
jgleonard 7 years ago committed by GitHub
parent bb19aea597
commit 122ce48ae6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -46,7 +46,8 @@ func Empty() *Rules {
// //
// Ignore all dotfiles in "templates/" // Ignore all dotfiles in "templates/"
func (r *Rules) AddDefaults() { func (r *Rules) AddDefaults() {
r.parseRule(`templates/.?*`) // Placeholder for default rules with sample of ignoring dotfiles
// r.parseRule(`templates/.?*`)
} }
// ParseFile parses a helmignore file and returns the *Rules. // ParseFile parses a helmignore file and returns the *Rules.

Loading…
Cancel
Save