UNPKG

unexpectedly

Version:

Keep a bunch of test cases in a file, with their expected results

27 lines (25 loc) 451 B
import base from '@cto.af/eslint-config'; import mocha from '@cto.af/eslint-config/mocha.js'; import mod from '@cto.af/eslint-config/module.js'; export default [ { ignores: [ 'docs/**', 'coverage/**', '**/*.peg.js', '**/*.d.ts', 'test/pkg_bad/package.json', ], }, ...base, ...mod, ...mocha, { files: [ 'test/**/*.js', ], rules: { 'n/no-top-level-await': 'off', }, }, ];