babel.config.js

module.exports = {
  presets: ['module:@react-native/babel-preset'],
  plugins: [
    'react-native-reanimated/plugin', // 반드시 가장 마지막에 추가
  ],
};

.eslintrc.js

module.exports = {
  root: true,
  extends: '@react-native',
  'prettier/prettier': [
    'error',
    {
      'no-inline-styles': false,
    },
  ],
};

.prettierrc.js

module.exports = {
  arrowParens: 'avoid',
  bracketSameLine: true,
  bracketSpacing: false,
  singleQuote: true,
  trailingComma: 'all',
};