---
extends:
  - "./js/es5-node.js"
globals:
  expect: false
  sandbox: false
  sinon: false
env:
  mocha: true
  node: true
rules:
  "no-unused-expressions": "off" # for `chai.expect`
  "max-len": ["error", 100, 2, {ignorePattern: "^\\s*(?:it|describe)\\(.*"}]
  "max-statements": "off"
  "max-nested-callbacks": "off"
  "no-multi-spaces": "off"
  "func-style": ["off"]
