10 lines
213 B
JavaScript
10 lines
213 B
JavaScript
import { typescript } from '@repo/eslint-config/typescript';
|
|
|
|
/** @type {import("eslint").Linter.Config} */
|
|
export default [
|
|
...typescript,
|
|
{
|
|
ignores: ['**/graphql/types.ts', '**/schema.graphql'],
|
|
},
|
|
];
|