Advertisement
Guest User

Untitled

a guest
Jul 21st, 2019
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. {
  2. "env": {
  3. "browser": true,
  4. "es6": true
  5. },
  6. "extends": ["eslint:recommended", "plugin:react/recommended"],
  7. "globals": {
  8. "Atomics": "readonly",
  9. "SharedArrayBuffer": "readonly"
  10. },
  11. "parser": "babel-eslint",
  12. "parserOptions": {
  13. "ecmaFeatures": {
  14. "jsx": true,
  15. "modules": true,
  16. "experimentalObjectRestSpread": true
  17. },
  18. "sourceType": "module",
  19. "ecmaVersion": 6,
  20. "allowImportExportEverywhere": true
  21. },
  22. "plugins": [
  23. "react"
  24. ],
  25. "rules": {
  26. "quotes": [2, "single", { "avoidEscape": true }],
  27. "comma-dangle": 0,
  28. "react/jsx-uses-vars": 1,
  29. "react/display-name": 1,
  30. "react/prop-types": 0,
  31. "no-unused-vars": "warn",
  32. "no-console": 1,
  33. "no-unexpected-multiline": "warn"
  34. }
  35. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement