Skip to content

Commit

Permalink
Tiny fix for .gitignore
Browse files Browse the repository at this point in the history
The expression `**.xxx` doesn't make sense because '**' makes sense only for
directories.  Since `*.xxx` is relative it already applies for all files in all
directories with the specified extension.

Little background: git actually ignores that, but ripgrep throws a warning about
it so when looking for something I always get 4 lines of warnings.  Even though
they are harmless, they are pretty annoying.

Signed-off-by: Martin Kletzander <[email protected]>
  • Loading branch information
nertpinx committed Jun 7, 2018
1 parent 41eafc1 commit 1f53ebb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ hack/gen-swagger-doc/*.adoc
hack/gen-swagger-doc/*.md
hack/gen-swagger-doc/html5
cluster/local/certs
**.swp
**.pem
**.crt
**.csr
*.swp
*.pem
*.crt
*.csr
_out
vendor/**/*_test.go
**/polarion.xml
Expand Down

0 comments on commit 1f53ebb

Please sign in to comment.