UNPKG

eslint-config-bananass

Version:

ESLint Config for Bananass Framework.🍌

33 lines (29 loc) 623 B
/** * @fileoverview ESLint settings. */ // -------------------------------------------------------------------------------- // Exports // -------------------------------------------------------------------------------- module.exports.node = { resolverConfig: { // `eslint-plugin-n` uses webpack's `enhanced-resolve` under the hood. extensions: [ '.js', '.mjs', '.cjs', '.jsx', '.ts', '.mts', '.cts', '.tsx', '.d.ts', '.d.mts', '.d.cts', '.json', ], mainFiles: ['index'], }, }; module.exports.react = { version: 'detect', };