14 lines
369 B
JavaScript
14 lines
369 B
JavaScript
import baseConfig from '@ufb/eslint-config/base';
|
|
import nextjsConfig from '@ufb/eslint-config/nextjs';
|
|
import reactConfig from '@ufb/eslint-config/react';
|
|
|
|
/** @type {import('typescript-eslint').Config} */
|
|
export default [
|
|
{
|
|
ignores: ['.next/**', 'jest.setup.ts', 'next-env.d.ts', '**/api.type.ts'],
|
|
},
|
|
...baseConfig,
|
|
...reactConfig,
|
|
...nextjsConfig,
|
|
];
|