Skip to content

Commit

Permalink
Initial
Browse files Browse the repository at this point in the history
  • Loading branch information
shoumikhin committed Jan 19, 2018
0 parents commit 543d70a
Show file tree
Hide file tree
Showing 139 changed files with 12,415 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .clang-format
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
BasedOnStyle: Google

AlignOperands: false
AllowShortIfStatementsOnASingleLine: false
AllowShortLoopsOnASingleLine: false
BreakBeforeTernaryOperators: false
ColumnLimit: 100
PointerBindsToType: false
98 changes: 98 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,98 @@
# Generic build products

*.[oa]
[Bb]uild/
[Pp]re-[Bb]uild/
[Dd]eliverables/
[Dd]istribution/
[Dd]ocumentation/
[Dd]ocs/

# Swift PM

Packages/
.build/
*.xcodeproj
*.resolved

# Bazel

bazel-*

# Other VCS

.hg
.svn
*.prej
*.mine
CVS

# OSX

.DS_Store
.DS_Store?
._*
.~*
~$*
*.lock
.AppleDouble
.LSOverride
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
ehthumbs.db
Thumbs.db
.AppleDB
.AppleDesktop
.apdisk

# Windows

Thumbs.db
ehthumbs.db
Desktop.ini
$RECYCLE.BIN/
*.cab
*.msi
*.msm
*.msp
*.lnk

# Xcode

DerivedData/
xcuserdata/
project.xcworkspace/
*.mode1
*.mode1v3
*.mode2v3
*.perspective
*.perspectivev3
*.pbxuser
*.xccheckout
*.moved-aside
*.xcuserstate
*.xctimeline

# JetBrains

.idea/

# CocoaPods

!Podfile.lock
!Pods/Manifest.lock
Pods/Documentation

#Carthage

Carthage/

# SublimeText

*.tmlanguage.cache
*.tmPreferences.cache
*.stTheme.cache
*.sublime-workspace
100 changes: 100 additions & 0 deletions .hgignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,100 @@
syntax: glob

# Generic build products

*.[oa]
[Bb]uild/
[Pp]re-[Bb]uild/
[Dd]eliverables/
[Dd]istribution/
[Dd]ocumentation/
[Dd]ocs/

# Swift PM

Packages/
.build/
*.xcodeproj
*.resolved

# Bazel

bazel-*

# Other VCS

.hg
.svn
*.prej
*.mine
CVS

# OSX

.DS_Store
.DS_Store?
._*
.~*
~$*
*.lock
.AppleDouble
.LSOverride
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
ehthumbs.db
Thumbs.db
.AppleDB
.AppleDesktop
.apdisk

# Windows

Thumbs.db
ehthumbs.db
Desktop.ini
$RECYCLE.BIN/
*.cab
*.msi
*.msm
*.msp
*.lnk

# Xcode

DerivedData/
xcuserdata/
project.xcworkspace/
*.mode1
*.mode1v3
*.mode2v3
*.perspective
*.perspectivev3
*.pbxuser
*.xccheckout
*.moved-aside
*.xcuserstate
*.xctimeline

# JetBrains

.idea/

# CocoaPods

!Podfile.lock
!Pods/Manifest.lock
Pods/Documentation

#Carthage

Carthage/

# SublimeText

*.tmlanguage.cache
*.tmPreferences.cache
*.stTheme.cache
*.sublime-workspace
18 changes: 18 additions & 0 deletions .swiftlint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
disabled_rules:
- xctfail_message

line_length: 100
function_body_length:
warning: 100
error: 200
type_body_length:
warning: 500
error: 1000
file_length:
warning: 1000
error: 2000
nesting:
type_level:
warning: 3
error: 5
cyclomatic_complexity: 15
Loading

0 comments on commit 543d70a

Please sign in to comment.