.eslintrc.js 296 B

123456789101112131415161718
  1. module.exports = {
  2. "env": {
  3. "mocha": true
  4. },
  5. "globals": {
  6. "assert": true,
  7. "chai": true,
  8. "sinon": true
  9. },
  10. "rules": {
  11. "func-name-matching": 0,
  12. "import/no-commonjs": 2,
  13. "lines-between-class-members": 0,
  14. "react/jsx-no-bind": 0,
  15. "require-await": 0
  16. }
  17. };