-
Notifications
You must be signed in to change notification settings - Fork 137
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: enhanced iOS installation + update Examples (#55)
* chore : podspec info from package.json * - migrate to react-native 0.60.5 - remove unused legacy files * feat(App): Example update using hooks * - fix android - docs: update android document * - fix ios - docs: update ios document * docs(Readme): added kakao maven description * skip: linting * skip: targeting the latest version of SDK * fix(iOS): use logoutAndCloseWithCompletionHandler instead of close * fix(podspec): add static_framework option for use_frameworks! * docs(Readme): update iOS installation * docs(Readme): Usage linting * skip: applying review * setup environment for login examples
- Loading branch information
Showing
269 changed files
with
3,362 additions
and
21,155 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,30 +1,4 @@ | ||
module.exports = { | ||
"extends": "standard", | ||
"env": { | ||
"browser": true | ||
}, | ||
"rules": { | ||
"no-unused-expressions": 0, | ||
"no-unused-vars": 0, | ||
"no-return-assign": 0, | ||
"comma-dangle": ["error", { | ||
"arrays": "only-multiline", | ||
"objects": "only-multiline", | ||
"imports": "only-multiline", | ||
"exports": "only-multiline", | ||
"functions": "only-multiline", | ||
}], | ||
"semi": [2, "always"], | ||
"arrow-parens": ["error", "always"], | ||
"space-before-function-paren": ["error", "never"], | ||
"standard/object-curly-even-spacing": 0, | ||
"no-new-object": "error", | ||
"no-array-constructor": "error", | ||
"no-cond-assign": 0, | ||
}, | ||
"plugins": [ | ||
"standard", | ||
"promise", | ||
], | ||
"parser": "babel-eslint" | ||
}; | ||
root: true, | ||
extends: '@react-native-community', | ||
}; |
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
module.exports = { | ||
bracketSpacing: false, | ||
jsxBracketSameLine: true, | ||
singleQuote: true, | ||
trailingComma: 'all', | ||
}; |
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
Oops, something went wrong.