Skip to content

Commit 3a20a6a

Browse files
committed
Add .editorconfig and .gitignore
1 parent 59df2a6 commit 3a20a6a

File tree

3 files changed

+119
-22
lines changed

3 files changed

+119
-22
lines changed

.editorconfig

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
root = true
2+
3+
[*]
4+
end_of_line = lf
5+
insert_final_newline = true
6+
charset = utf-8
7+
indent_style = space
8+
indent_size = 4
9+
10+
[*.sol]
11+
indent_style = space
12+
indent_size = 4
13+
14+
[*.py]
15+
indent_style = space
16+
indent_size = 4
17+
18+
[*.rb]
19+
indent_style = space
20+
indent_size = 2
21+
22+
[*.java]
23+
indent_style = space
24+
indent_size = 4
25+
26+
[*.php]
27+
indent_style = space
28+
tab_width = 4
29+
30+
[*.html]
31+
indent_style = space
32+
indent_size = 2
33+
34+
[*.js]
35+
indent_style = space
36+
indent_size = 2
37+
38+
[*.css]
39+
indent_style = space
40+
indent_size = 2
41+
42+
[*.md]
43+
trim_trailing_whitespace = false
44+
45+
[{package.json,.travis.yml}]
46+
indent_style = space
47+
indent_size = 2

.gitignore

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
# Deploy Key
2+
.infurakey
3+
.mnemonic
4+
5+
# Logs
6+
.DS_Store
7+
logs
8+
*.log
9+
npm-debug.log*
10+
yarn-debug.log*
11+
yarn-error.log*
12+
13+
# Runtime data
14+
pids
15+
*.pid
16+
*.seed
17+
*.pid.lock
18+
19+
# Directory for instrumented libs generated by jscoverage/JSCover
20+
lib-cov
21+
22+
# Coverage directory used by tools like istanbul
23+
coverage
24+
25+
# nyc test coverage
26+
.nyc_output
27+
28+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
29+
.grunt
30+
31+
# Bower dependency directory (https://bower.io/)
32+
bower_components
33+
34+
# node-waf configuration
35+
.lock-wscript
36+
37+
# Compiled binary addons (https://nodejs.org/api/addons.html)
38+
build/Release
39+
40+
# Dependency directories
41+
node_modules/
42+
jspm_packages/
43+
44+
# TypeScript v1 declaration files
45+
typings/
46+
47+
# Optional npm cache directory
48+
.npm
49+
50+
# Optional eslint cache
51+
.eslintcache
52+
53+
# Optional REPL history
54+
.node_repl_history
55+
56+
# Output of 'npm pack'
57+
*.tgz
58+
59+
# Yarn Integrity file
60+
.yarn-integrity
61+
62+
# dotenv environment variables file
63+
.env
64+
65+
# next.js build output
66+
.next
67+
68+
# zos sessions
69+
zos.dev-*
70+
71+
# contracts build
72+
build

LICENSE

Lines changed: 0 additions & 22 deletions
This file was deleted.

0 commit comments

Comments
 (0)