Skip to content

Commit 1a19c8c

Browse files
authoredNov 17, 2019
Merge pull request #1 from ashblue/develop
Release
2 parents ff272b9 + c2d12f3 commit 1a19c8c

File tree

262 files changed

+10384
-1904
lines changed

Some content is hidden

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

262 files changed

+10384
-1904
lines changed
 

‎.editorconfig

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Editor configuration, see http://editorconfig.org
2+
root = true
3+
4+
[*]
5+
charset = utf-8
6+
indent_style = space
7+
indent_size = 4
8+
insert_final_newline = true
9+
trim_trailing_whitespace = true
10+
11+
[*.md]
12+
max_line_length = off
13+
trim_trailing_whitespace = false
14+
15+
[manifest.json]
16+
indent_size = 2

‎.gitignore

+7-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
/[Oo]bj/
44
/[Bb]uild/
55
/[Bb]uilds/
6-
/Assets/AssetStoreTools*
6+
/[Ll]ogs/
7+
/[Mm]emoryCaptures/
78

89
# Visual Studio 2015 cache directory
910
/.vs/
@@ -31,3 +32,8 @@ sysinfo.txt
3132

3233
# Builds
3334
*.apk
35+
36+
# Node.js
37+
node_modules
38+
dist
39+
dist.zip

0 commit comments

Comments
 (0)
Please sign in to comment.