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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .prettierrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
module.exports = {
arrowParens: 'avoid',
bracketSameLine: true,
bracketSpacing: true,
singleQuote: true,
trailingComma: 'all',
jsxSingleQuote: true
};
2 changes: 1 addition & 1 deletion DEV_DOCS.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ application on iOS, Android or Web.

When running with Expo, `ios` and `android` folder are not needed for this project.
Also, some of the business logic may have different implementation for Expo and Bare React Native apps.
In Kitten Tricks, we handle it with [`.expo` file extension](https://docs.expo.io/versions/latest/bare/using-expo-client/#practical-patterns-for-client-compatible-bare-apps).
In Kitten Tricks, we handle it with `.ex` file extension.

# Environments

Expand Down
3 changes: 1 addition & 2 deletions app.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@
"androidStatusBar": {
"barStyle": "dark-content",
"backgroundColor": "#F7F9FC"
},
"entryPoint": "node_modules/expo/AppEntry.js"
}
}
}
1 change: 1 addition & 0 deletions babel.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ module.exports = function (api) {

const plugins = [
['module-resolver', moduleResolverConfig],
'react-native-reanimated/plugin',
];

return { presets, plugins };
Expand Down
Loading