Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
24 changes: 8 additions & 16 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,21 +1,13 @@
module.exports = {
env: {
'jest/globals': true,
},
root: true,
extends: ['@react-native-community'],
plugins: ['jest'],
extends: ['handlebarlabs', 'plugin:prettier/recommended'],
rules: {
semi: ['error', 'never'],
'object-curly-spacing': ['error', 'always'],
'array-bracket-spacing': ['error', 'never'],
'react/require-default-props': ['error'],
'react/default-props-match-prop-types': ['error'],
'react/sort-prop-types': ['error'],
'no-use-before-define': 0,
'react/style-prop-object': 0,
'prettier/prettier': 0,
},
settings: {
'import/resolver': {
'babel-module': {},
},
globals: {
__DEV__: 'readonly',
},
}
plugins: [],
};
64 changes: 0 additions & 64 deletions .flowconfig

This file was deleted.

21 changes: 20 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -58,4 +58,23 @@ buck-out/
# CocoaPods
/ios/Pods/

template/plugins/typescript/template/tsconfig.json
#amplify-do-not-edit-begin
amplify/\#current-cloud-backend
amplify/.config/local-*
amplify/logs
amplify/mock-data
amplify/backend/amplify-meta.json
amplify/backend/awscloudformation
amplify/backend/.temp
build/
dist/
node_modules/
aws-exports.js
awsconfiguration.json
amplifyconfiguration.json
amplifyconfiguration.dart
amplify-build-config.json
amplify-gradle-config.json
amplifytools.xcconfig
.secret-*
#amplify-do-not-edit-end
12 changes: 12 additions & 0 deletions .graphqlconfig.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
projects:
gsamplify:
schemaPath: src/graphql/schema.json
includes:
- src/graphql/**/*.js
excludes:
- ./amplify/**
extensions:
amplify:
codeGenTarget: javascript
generatedFileName: ''
docsFilePath: src/graphql
3 changes: 1 addition & 2 deletions .prettierrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,5 @@ module.exports = {
jsxBracketSameLine: false,
singleQuote: true,
trailingComma: 'all',
semi: false,
arrowParens: 'avoid',
}
};
11 changes: 11 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"files.exclude": {
"amplify/.config": true,
"amplify/**/*-parameters.json": true,
"amplify/**/amplify.state": true,
"amplify/**/transform.conf.json": true,
"amplify/#current-cloud-backend": true,
"amplify/backend/amplify-meta.json": true,
"amplify/backend/awscloudformation": true
}
}
3 changes: 3 additions & 0 deletions App.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import App from './src';

export default App;
Loading