Skip to content

Commit de2679a

Browse files
yjoseasdolo
authored andcommitted
fix: fix prettier not working correctly with lint --fix ( fix obytes#410)
1 parent b3584ed commit de2679a

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.prettierrc.js

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
module.exports = {
1+
/** @type {import('prettier').Config} */
2+
const config = {
23
singleQuote: true,
34
endOfLine: 'auto',
4-
};
5+
};
6+
7+
module.exports = config;

app.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ export default ({ config }: ConfigContext): ExpoConfig => ({
8080
'expo-localization',
8181
'expo-router',
8282
['app-icon-badge', appIconBadgeConfig],
83-
["react-native-edge-to-edge"]
83+
['react-native-edge-to-edge'],
8484
],
8585
extra: {
8686
...ClientEnv,

0 commit comments

Comments
 (0)