-
Notifications
You must be signed in to change notification settings - Fork 2
/
.gitignore
173 lines (143 loc) · 2.16 KB
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
# archives
*.7z
*.7zip
*.rar
*.tar.gz
*.tgz
*.zip
# binary files
*.bin
# build artifacts
**/build
**/.dist
.dist.tar.gz
# cmake
*.cmake
!toolchain.cmake
!CMakeModules/*.cmake
CMakeCache.txt
CMakeFiles
cmake_install.cmake
cmake-build-debug/
cmake-build-release/
Makefile
# data files
*.csv
/*.json
*.tsv
*.xls
*.xlsx
# doxygen
doxygen
eos.doxygen
# editor files
*.sw?
.vscode
.idea/
# environment variable files
.env
# eslint
.eslintcache
# istanbul/jest
**/coverage
junit.xml
# keys and certs
*.cer
*.crt
*.key
*.pem
# logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
*.txt
!CMakeLists.txt
# macOS finder cache
**/*.DS_Store
# nodeJS + TypeScript
**/build
**/node_modules
.node_repl_history
**/.npm
*.tgz
**/typings
# nodeos
genesis.json
hardfork.hpp
wallet.json
witness_node_data_dir
*.wallet
# pipeline-upload.sh artifacts
/pipeline.yml
/pipeline.yaml
# python
*.pyc
*.pyo
# swagger
!*.swagger.*
# terraform
crash.log
*override.tf
*override.tf.json
plan.out
**/.terraform
*.tfstate
*.tfstate.*
*.terraform.lock.hcl
**/terraform/*.out
# wasm
*.wast
*.wast.hpp
# yarn
.yarn-integrity
### COMPONENTS ###
libraries/egenesis/egenesis_brief.cpp
libraries/egenesis/egenesis_full.cpp
libraries/egenesis/embed_genesis
libraries/types/type_generator
libraries/types/types_test
libraries/fc/test/crypto/test_cypher_suites
libraries/testing/chain_tester
libraries/wallet/Doxyfile
libraries/wallet/api_documentation.cpp
libraries/wallet/doxygen
libraries/wasm-jit/Source/Programs/Assemble
libraries/wasm-jit/Source/Programs/Disassemble
libraries/wasm-jit/Source/Programs/Test
libraries/wasm-jit/Source/Programs/wavm
programs/cleos/cleos
programs/js_operation_serializer/js_operation_serializer
programs/data-dir
programs/eosio-abigen/eosio-abigen
programs/cleos/config.hpp
programs/eosio-applesedemo/eosio-applesedemo
programs/eosio-launcher/config.hpp
programs/eosio-launcher/eosio-launcher
programs/keosd/keosd
programs/nodeos/config.hpp
programs/nodeos/nodeos
scripts/tn_init.sh
tests/plugin_test
unittests/unit_test
### OTHER ###
*.a
*.dylib
*.ll
*.bc
*.s
*.dot
*.abi.hpp
*.ninja
\#*
\.#*
moc_*
*.moc
.clangd/
Testing/*
build-debug/*
*.iws
.DS_Store
node_modules/*
.cache