@masknet/prefer-default-export
Enforce default export location at top or bottom
/**
* @minItems Infinity
*/
export type Options = ['at-top' | 'at-bottom']
/* eslint @masknet/prefer-default-export: 'at-top' */
export const foo = ''
export default {}
export const bar = ''
/* eslint @masknet/prefer-default-export: 'at-top' */
export default {}
export const foo = ''
export const bar = ''