Guest User

Untitled

a guest
May 27th, 2018
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.06 KB | None | 0 0
  1. module.exports = {
  2. "parser": "babel-eslint",
  3. "env": {
  4. "browser": true,
  5. "es6": true
  6. },
  7. "settings": {
  8. "ecmascript": 6,
  9. "jsx": true
  10. },
  11. "parserOptions": {
  12. "ecmaVersion": 2017,
  13. "ecmaFeatures": {
  14. "experimentalObjectRestSpread": true,
  15. "experimentalDecorators": true,
  16. "jsx": true
  17. },
  18. "sourceType": "module"
  19. },
  20. "plugins": [
  21. "react",
  22. ],
  23. "extends": "airbnb",
  24. "rules": {
  25. "camelcase": 0,
  26. "class-methods-use-this": 0,
  27. "func-names": 0,
  28. "function-paren-newline": 0,
  29. "import/extensions": 1,
  30. "import/no-extraneous-dependencies": 1,
  31. "import/no-unresolved": 1,
  32. "import/prefer-default-export": 0,
  33. "jsx-a11y/anchor-is-valid": 0,
  34. "jsx-a11y/accessible-emoji": 1,
  35. "max-len": 0,
  36. "no-console": 0,
  37. "no-lonely-if": 0,
  38. "no-param-reassign": 1,
  39. "no-shadow": 0,
  40. "no-underscore-dangle": 0,
  41. "react/prop-types": 0,
  42. "react/forbid-prop-types": 0,
  43. "react/react-in-jsx-scope": 0,
  44. "react/jsx-filename-extension": 0,
  45. "react/prefer-stateless-function": 0,
  46. "react/no-danger": 0,
  47. "react/no-unescaped-entities": 0,
  48. "react/no-array-index-key": 1
  49. }
  50. };
Add Comment
Please, Sign In to add comment