.eslintrc.json 337 B

123456789101112131415161718192021
  1. {
  2. "env": {
  3. "browser": true,
  4. "mocha": true,
  5. "serviceworker": true
  6. },
  7. "globals": {
  8. "Bindings": true,
  9. "Components": true,
  10. "UI": true,
  11. "WebView": true
  12. },
  13. "plugins": [
  14. "mocha",
  15. "unicorn"
  16. ],
  17. "rules": {
  18. "mocha/no-exclusive-tests": "error",
  19. "unicorn/prefer-node-protocol": "error"
  20. }
  21. }