No Description

.eslintrc.js 190B

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