14 lines
467 B
TypeScript
14 lines
467 B
TypeScript
// Not usable. https://github.com/dimaMachina/graphql-eslint/issues/2178
|
|
import type { GraphQLRulesObject } from '@aet/eslint-define-config/src/rules/graphql-eslint';
|
|
import * as graphql from '@graphql-eslint/eslint-plugin';
|
|
|
|
import { defineConfig } from '../types';
|
|
|
|
// https://the-guild.dev/graphql/eslint/rules
|
|
const graphqlRules: Partial<GraphQLRulesObject> = {};
|
|
|
|
export default defineConfig({
|
|
processor: graphql.processors.graphql,
|
|
rules: graphqlRules,
|
|
});
|