.eslintrc 1.2 KB

1234567891011121314151617181920212223242526
  1. {
  2. // ╔═╗╔═╗╦ ╦╔╗╔╔╦╗┬─┐┌─┐ ┌─┐┬ ┬┌─┐┬─┐┬─┐┬┌┬┐┌─┐
  3. // ║╣ ╚═╗║ ║║║║ ║ ├┬┘│ │ │└┐┌┘├┤ ├┬┘├┬┘│ ││├┤
  4. // o╚═╝╚═╝╩═╝╩╝╚╝ ╩ ┴└─└─┘ └─┘ └┘ └─┘┴└─┴└─┴─┴┘└─┘
  5. // ┌─ ┌─┐┌─┐┬─┐ ┌─┐┬ ┬┌┬┐┌─┐┌┬┐┌─┐┌┬┐┌─┐┌┬┐ ┌┬┐┌─┐┌─┐┌┬┐┌─┐ ─┐
  6. // │ ├┤ │ │├┬┘ ├─┤│ │ │ │ ││││├─┤ │ ├┤ ││ │ ├┤ └─┐ │ └─┐ │
  7. // └─ └ └─┘┴└─ ┴ ┴└─┘ ┴ └─┘┴ ┴┴ ┴ ┴ └─┘─┴┘ ┴ └─┘└─┘ ┴ └─┘ ─┘
  8. // > An .eslintrc configuration override for use with the tests in this directory.
  9. //
  10. // (See .eslintrc in the root directory of this package for more info.)
  11. "extends": [
  12. "../.eslintrc"
  13. ],
  14. "env": {
  15. "mocha": true
  16. },
  17. "globals": {
  18. // "assert": true,
  19. // "util": true
  20. // …plus any other convenience globals exposed in test suites
  21. }
  22. }