You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

.eslintrc.json 234B

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