CollectD Operator - Skeleton code
[demo.git] / vnfs / DAaaS / collectd-operator / .gitignore
1 # Common
2 .DS_Store
3 .vscode
4 *-workspace
5 .tox/
6 .*.swp
7 *.log
8 coverage.html
9 docs/build
10 *.so
11
12 # Tests
13 *.test
14 *.out
15
16 # # Directories
17 bin
18 target
19 vendor
20 src/github.com
21 src/golang.org
22
23
24
25 # Temporary Build Files
26 build/_output
27 build/_test
28 # Created by https://www.gitignore.io/api/go,vim,emacs,visualstudiocode
29 ### Emacs ###
30 # -*- mode: gitignore; -*-
31 *~
32 \#*\#
33 /.emacs.desktop
34 /.emacs.desktop.lock
35 *.elc
36 auto-save-list
37 tramp
38 .\#*
39 # Org-mode
40 .org-id-locations
41 *_archive
42 # flymake-mode
43 *_flymake.*
44 # eshell files
45 /eshell/history
46 /eshell/lastdir
47 # elpa packages
48 /elpa/
49 # reftex files
50 *.rel
51 # AUCTeX auto folder
52 /auto/
53 # cask packages
54 .cask/
55 dist/
56 # Flycheck
57 flycheck_*.el
58 # server auth directory
59 /server/
60 # projectiles files
61 .projectile
62 projectile-bookmarks.eld
63 # directory configuration
64 .dir-locals.el
65 # saveplace
66 places
67 # url cache
68 url/cache/
69 # cedet
70 ede-projects.el
71 # smex
72 smex-items
73 # company-statistics
74 company-statistics-cache.el
75 # anaconda-mode
76 anaconda-mode/
77 ### Go ###
78 # Binaries for programs and plugins
79 *.exe
80 *.exe~
81 *.dll
82 *.so
83 *.dylib
84 # Test binary, build with 'go test -c'
85 *.test
86 # Output of the go coverage tool, specifically when used with LiteIDE
87 *.out
88 ### Vim ###
89 # swap
90 .sw[a-p]
91 .*.sw[a-p]
92 # session
93 Session.vim
94 # temporary
95 .netrwhist
96 # auto-generated tag files
97 tags
98 ### VisualStudioCode ###
99 .vscode/*
100 .history
101 # End of https://www.gitignore.io/api/go,vim,emacs,visualstudiocode