.eslintrc.json 257 B

1234567891011121314
  1. {
  2. "globals": {
  3. "Symbol": true
  4. },
  5. "rules": {
  6. "consistent-this": "off",
  7. "id-length": "off",
  8. "no-empty-function": "off",
  9. "no-eval": "off",
  10. "no-new-wrappers": "off",
  11. "no-prototype-builtins": "off",
  12. "no-shadow": "off"
  13. }
  14. }