No Description

.eslintrc.js 164B

123456789101112
  1. module.exports = {
  2. root: true,
  3. extends: '@react-native-community',
  4. rules: {
  5. 'prettier/prettier': [
  6. {
  7. singleQuote: true
  8. }
  9. ]
  10. }
  11. };