-
Notifications
You must be signed in to change notification settings - Fork 476
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
59 additions
and
24 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
{ | ||
"rules": { | ||
"indent": [ | ||
2, | ||
2 | ||
], | ||
"quotes": [ | ||
2, | ||
"single" | ||
], | ||
"linebreak-style": [ | ||
2, | ||
"unix" | ||
], | ||
"semi": [ | ||
2, | ||
"always" | ||
] | ||
}, | ||
"env": { | ||
"es6": true, | ||
"node": true | ||
}, | ||
"ecmaFeatures": { | ||
"jsx": true | ||
}, | ||
"plugins": [ | ||
"react" | ||
] | ||
} |
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 |
---|---|---|
@@ -1,29 +1,29 @@ | ||
module.exports = { | ||
"LAErrorAuthenticationFailed": { | ||
message: "Authentication was not successful because the user failed to provide valid credentials." | ||
'LAErrorAuthenticationFailed': { | ||
message: 'Authentication was not successful because the user failed to provide valid credentials.' | ||
}, | ||
"LAErrorUserCancel": { | ||
message: "Authentication was canceled by the user—for example, the user tapped Cancel in the dialog." | ||
'LAErrorUserCancel': { | ||
message: 'Authentication was canceled by the user—for example, the user tapped Cancel in the dialog.' | ||
}, | ||
"LAErrorUserFallback": { | ||
message: "Authentication was canceled because the user tapped the fallback button (Enter Password)." | ||
'LAErrorUserFallback': { | ||
message: 'Authentication was canceled because the user tapped the fallback button (Enter Password).' | ||
}, | ||
"LAErrorSystemCancel": { | ||
message: "Authentication was canceled by system—for example, if another application came to foreground while the authentication dialog was up." | ||
'LAErrorSystemCancel': { | ||
message: 'Authentication was canceled by system—for example, if another application came to foreground while the authentication dialog was up.' | ||
}, | ||
"LAErrorPasscodeNotSet": { | ||
message: "Authentication could not start because the passcode is not set on the device." | ||
'LAErrorPasscodeNotSet': { | ||
message: 'Authentication could not start because the passcode is not set on the device.' | ||
}, | ||
"LAErrorTouchIDNotAvailable": { | ||
message: "Authentication could not start because Touch ID is not available on the device" | ||
'LAErrorTouchIDNotAvailable': { | ||
message: 'Authentication could not start because Touch ID is not available on the device' | ||
}, | ||
"LAErrorTouchIDNotEnrolle": { | ||
message: "Authentication could not start because Touch ID has no enrolled fingers." | ||
'LAErrorTouchIDNotEnrolle': { | ||
message: 'Authentication could not start because Touch ID has no enrolled fingers.' | ||
}, | ||
"RCTTouchIDUnknownError": { | ||
message: "Could not authenticate for an unknown reason." | ||
'RCTTouchIDUnknownError': { | ||
message: 'Could not authenticate for an unknown reason.' | ||
}, | ||
"RCTTouchIDNotSupported": { | ||
message: "Device does not support Touch ID." | ||
'RCTTouchIDNotSupported': { | ||
message: 'Device does not support Touch ID.' | ||
} | ||
}; |
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