module.exports = { extends: 'distributed-lab/node', rules: { 'new-cap': [2, { 'newIsCapExceptionPattern': '^xdr', 'capIsNewExceptionPattern': '^ed25519', }], 'promise/prefer-await-to-then': 0 }, globals: { FormData: true, Blob: true }, overrides: [ // Config for .test files { files: '*.spec.js', globals: { expect: true, expectThrow: true, expectNoThrow: true, catchPromise: true } } ] };