Skip to content

Commit 1ad590a

Browse files
- remove example folder
- restructure - prettier fix
1 parent 74dce18 commit 1ad590a

File tree

88 files changed

+1163
-15395
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

88 files changed

+1163
-15395
lines changed

.eslintrc.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
module.exports = {
2-
extends: ['@react-native-community', 'plugin:prettier/recommended'],
3-
plugins: ['simple-import-sort'],
2+
parser: '@babel/eslint-parser',
3+
extends: ['plugin:prettier/recommended'],
4+
plugins: ['typescript', 'simple-import-sort'],
45
root: true,
56
rules: {
67
'import/order': 'off',
78
'simple-import-sort/exports': 'error',
89
'simple-import-sort/imports': 'error',
910
'sort-imports': 'off',
1011
},
11-
}
12+
};

.prettierrc.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module.exports = {
22
jsxSingleQuote: true,
33
singleQuote: true,
4-
trailingComma: 'es2017',
5-
semi: false,
4+
trailingComma: 'all',
5+
semi: true,
66
}

README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
11
# React Firebase Chat
22

3-
### `Flyerhq` React Firebase Chat
3+
### `Flyerhq` React & Node Firebase Chat
44

55
---
66

77
### Status
88

9-
> Migrating from react native to react web
9+
✅ Migrating from react native to react web
10+
> Adding node support
11+
> Migrate `React Native` Example to `React Web`
12+
> Create an `express` example

babel.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module.exports = {
2-
presets: ['module:metro-react-native-babel-preset'],
3-
}
2+
presets: ['@babel/preset-react'],
3+
};

example/.buckconfig

Lines changed: 0 additions & 6 deletions
This file was deleted.

example/.editorconfig

Lines changed: 0 additions & 3 deletions
This file was deleted.

example/.eslintrc.js

Lines changed: 0 additions & 11 deletions
This file was deleted.

example/.gitattributes

Lines changed: 0 additions & 3 deletions
This file was deleted.

example/.gitignore

Lines changed: 0 additions & 64 deletions
This file was deleted.

example/.prettierrc.js

Lines changed: 0 additions & 5 deletions
This file was deleted.

0 commit comments

Comments
 (0)