Guest User

Untitled

a guest
Mar 20th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. module.exports = {
  2. "parser": "babel-eslint",
  3. "extends": "airbnb",
  4. "plugins": [
  5. "react-native"
  6. ],
  7. "ecmaFeatures": {
  8. "jsx": true
  9. },
  10. "rules": {
  11. "react-native/no-unused-styles": 2,
  12. "react-native/split-platform-components": 2,
  13. "react-native/no-inline-styles": 2,
  14. "react-native/no-color-literals": 2,
  15. "react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }],
  16. "react/prefer-stateless-function": [0,],
  17. "import/prefer-default-export": ["off"],
  18. "no-use-before-define": 0,
  19. "react/forbid-prop-types": 0,
  20. },
  21. "env": {
  22. "jest": true
  23. }
  24. };
Add Comment
Please, Sign In to add comment