.eslintrc.json 544 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "env": { "es6": true },
  3. "extends": [
  4. "plugin:prettier/recommended",
  5. "eslint:recommended",
  6. "plugin:react/recommended"
  7. ],
  8. "globals": {
  9. "i18n": true,
  10. "mist": true,
  11. "beforeEach": true,
  12. "LocalStore": true,
  13. "web3": true,
  14. "Tabs": true,
  15. "Tracker": true,
  16. "_": true,
  17. "window": true,
  18. "location": true,
  19. "document": true,
  20. "Promise": true,
  21. "require": true,
  22. "global": true,
  23. "store": true,
  24. "exports": true,
  25. "module": true,
  26. "console": true,
  27. "process": true
  28. }
  29. }