.eslintrc 286 B

1234567891011121314151617
  1. {
  2. "globals": {
  3. "ga": true,
  4. "chrome": true
  5. },
  6. "plugins": ["html", "json"],
  7. "extends": "elemefe",
  8. "rules": {
  9. "no-restricted-globals": ["error", "event", "fdescribe"]
  10. },
  11. "parserOptions": {
  12. "ecmaVersion": 6,
  13. "ecmaFeatures": {
  14. "jsx": true
  15. }
  16. }
  17. }