15 lines
355 B
JavaScript
15 lines
355 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'],
|
|
rules:{
|
|
'react/forbid-component-props':0
|
|
}
|
|
},
|
|
];
|