-
Notifications
You must be signed in to change notification settings - Fork 120
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Partial solve object type mismatch issue from PR #71 # Conflicts: # EVReflection/EVReflectionTestApp/ViewController.swift # EVReflection/pod/EVObject.swift
- Loading branch information
Showing
31 changed files
with
665 additions
and
563 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
disabled_rules: | ||
- trailing_whitespace | ||
- variable_name | ||
- type_name | ||
|
||
#- opening_brace | ||
#- comma | ||
#- colon | ||
#- control_statement | ||
#- statement_position | ||
|
||
#opt_in_rules: | ||
#- empty_count | ||
#- missing_docs | ||
|
||
|
||
excluded: | ||
- Pods/ | ||
- Sparen/Common/Generated/ | ||
- Sparen/Resources | ||
- GlobalAPIKey | ||
- _name | ||
|
||
force_cast: warning | ||
|
||
force_try: warning | ||
|
||
function_parameter_count: | ||
- 5 | ||
- 12 | ||
|
||
function_body_length: | ||
- 50 | ||
- 120 | ||
|
||
cyclomatic_complexity: | ||
- 20 | ||
- 60 | ||
|
||
line_length: | ||
- 200 | ||
- 800 | ||
|
||
type_body_length: | ||
- 500 | ||
- 1000 | ||
|
||
file_length: | ||
- 500 | ||
- 2000 | ||
|
||
type_name: | ||
min_length: | ||
warning: 5 | ||
error: 2 | ||
max_length: | ||
warning: 40 | ||
error: 60 | ||
|
||
variable_name: | ||
min_length: | ||
warning: 5 | ||
error: 2 | ||
max_length: | ||
warning: 80 | ||
error: 50 | ||
|
||
#reporter: "csv" # reporter type (xcode, json, csv, checkstyle) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
language: objective-c | ||
osx_image: xcode7 | ||
osx_image: xcode7.3 | ||
|
||
before_install: | ||
- export LANG=en_US.UTF-8 | ||
- brew update | ||
- if brew outdated | grep -qx xctool; then brew upgrade xctool; fi | ||
|
||
script: | ||
- xctool clean build -project EVReflection/EVReflection.xcodeproj -scheme 'EVReflection iOS Tests' -sdk iphonesimulator9.0 ONLY_ACTIVE_ARCH=NO | ||
- xctool clean build -project EVReflection/EVReflection.xcodeproj -scheme 'EVReflection iOS Tests' -sdk iphonesimulator9.3 ONLY_ACTIVE_ARCH=NO | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -54,7 +54,3 @@ public class CustomPropertyClass: EVObject { | |
super.init() | ||
} | ||
} | ||
|
||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -187,6 +187,3 @@ public class TestRootObject: TestBaseObject { | |
|
||
public class TestInnerObject: TestBaseObject { | ||
} | ||
|
||
|
||
|
Oops, something went wrong.