Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | 1x 1x 1x 1x | /** Eloquence ESLint * ----------------------------------------------------------------------------- * * ℹ️ Package notes * * ESModules: Package defaults to using ESM for ESLint `sourceType` * configuration, with overrides for Node executed tooling like Jest. Node ESM * using cjs and mjs file extensions not yet handled. * * @module */ 'use strict' const mdxOverrides = require('./mdx-overrides') const nodeBase = require('./node-base') const reactBase = require('./react-base') module.exports = { mdxOverrides, nodeBase, reactBase } |