12 lines
298 B
JavaScript
12 lines
298 B
JavaScript
import { nextJsConfig } from '@repo/eslint-config/next-js';
|
|
import { tailwindConfig } from '@repo/eslint-config/tailwind';
|
|
|
|
/** @type {import("eslint").Linter.Config} */
|
|
export default [
|
|
...nextJsConfig,
|
|
...tailwindConfig,
|
|
{
|
|
ignores: ['**/graphql/types.ts', '**/schema.graphql'],
|
|
},
|
|
];
|