You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

.eslintrc-react-native.js 276B

123456789101112
  1. module.exports = {
  2. 'plugins': [
  3. 'react-native'
  4. ],
  5. 'rules': {
  6. 'react-native/no-color-literals': 2,
  7. 'react-native/no-inline-styles': 2,
  8. 'react-native/no-unused-styles': 2,
  9. 'react-native/split-platform-components': 2
  10. }
  11. };