Skip to content

Commit a3c9f20

Browse files
committed
Initial commit, relatively clean import from Copay
0 parents  commit a3c9f20

File tree

838 files changed

+86986
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

838 files changed

+86986
-0
lines changed

.editorconfig

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
root = true
2+
3+
[*]
4+
charset = utf-8
5+
end_of_line = lf
6+
insert_final_newline = true
7+
trim_trailing_whitespace = true
8+
indent_style = space
9+
indent_size = 2
10+
11+
[*.md]
12+
trim_trailing_whitespace = false
13+
14+
[Makefile]
15+
indent_style = tab
16+
17+
[**.html]
18+
max_char = 78
19+
brace_style = expand

.gitignore

+99
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,99 @@
1+
.vscode
2+
3+
# translation
4+
i18n/po/*.mo
5+
i18n/crowdin_api_key.txt
6+
src/js/translations.js
7+
8+
package-lock.json
9+
10+
11+
# cordova
12+
plugins
13+
platforms
14+
15+
# node-webkit
16+
cache
17+
webkitbuilds/*
18+
!webkitbuilds/README.md
19+
20+
# chrome extensions
21+
chrome-app/build/*
22+
chrome-app/*zip
23+
24+
# Logs
25+
logs
26+
*.log
27+
28+
# Runtime data
29+
pids
30+
*.pid
31+
*.seed
32+
33+
# Directory for instrumented libs generated by jscoverage/JSCover
34+
lib-cov
35+
36+
# Coverage directory used by tools like istanbul
37+
coverage
38+
39+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
40+
.grunt
41+
42+
# Compiled binary addons (http://nodejs.org/api/addons.html)
43+
build/Release
44+
45+
# Dependency directory
46+
# Commenting this out is preferred by some people, see
47+
# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git-
48+
node_modules
49+
bower_components
50+
angular-bitcore-wallet-client/angular-bitcore-wallet-client.js
51+
angular-bitauth/angular-bitauth.js
52+
53+
# Users Environment Variables
54+
.lock-wscript
55+
56+
# OSX
57+
58+
.DS_Store
59+
.AppleDouble
60+
.LSOverride
61+
62+
# Thumbnails
63+
._*
64+
65+
# Files that might appear on external disk
66+
.Spotlight-V100
67+
.Trashes
68+
69+
# Directories potentially created on remote AFP share
70+
.AppleDB
71+
.AppleDesktop
72+
Network Trash Folder
73+
Temporary Items
74+
.apdisk
75+
76+
# VIM ignore
77+
78+
[._]*.s[a-w][a-z]
79+
[._]s[a-w][a-z]
80+
*.un~
81+
Session.vim
82+
.netrwhist
83+
*~
84+
85+
.tags
86+
.tags1
87+
88+
# SASS
89+
src/sass/*.css
90+
.sass-cache
91+
src/sass/app
92+
93+
# www ?
94+
www/css/*
95+
www/lib/*
96+
www/js/*
97+
www/fonts
98+
99+

0 commit comments

Comments
 (0)