Skip to content

Commit

Permalink
add a skeleton controller
Browse files Browse the repository at this point in the history
  • Loading branch information
Brandon Walker committed Jul 10, 2019
1 parent 2184ff0 commit c4dd758
Show file tree
Hide file tree
Showing 2,555 changed files with 957,117 additions and 46 deletions.
1 change: 1 addition & 0 deletions .errcheck.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
(*github.com/tektoncd/triggers/vendor/go.uber.org/zap.SugaredLogger).Sync
41 changes: 41 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
# Compiled Object files
*.slo
*.lo
*.o
*.obj

# Precompiled Headers
*.gch
*.pch

# Compiled Dynamic libraries
*.so
*.dylib
*.dll

# Fortran module files
*.mod
*.smod

# Compiled Static libraries
*.lai
*.la
*.a
*.lib

# Executables
*.exe
*.out
*.app

# Emacs garbage
*~

# VSCode config
.vscode

# JetBrains IDE config
.idea

# Python
*.pyc
9 changes: 9 additions & 0 deletions .golangci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
run:
build-tags:
- e2e
skip-dirs:
- vendor
- pkg/client/clientset/versioned/fake
linters-settings:
errcheck:
exclude: .errcheck.txt
Loading

0 comments on commit c4dd758

Please sign in to comment.