Skip to content

Commit 93cb30f

Browse files
committedJan 30, 2018
CakeChat v1.0
0 parents  commit 93cb30f

Some content is hidden

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

88 files changed

+8319
-0
lines changed
 

‎.gitignore

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
*.DS_Store
2+
*.pyc
3+
*.swp
4+
*.egg-info
5+
.idea
6+
temp/*
7+
dist/*
8+
build/*
9+
tags
10+
venv

‎.style.yapf

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
[style]
2+
BASED_ON_STYLE = google
3+
4+
COLUMN_LIMIT = 120
5+
SPACE_BETWEEN_ENDING_COMMA_AND_CLOSING_BRACKET = true
6+
SPACES_AROUND_POWER_OPERATOR = true
7+
INDENT_DICTIONARY_VALUE = true
8+
BLANK_LINE_BEFORE_NESTED_CLASS_OR_DEF = false

0 commit comments

Comments
 (0)
Please sign in to comment.