Disable linter on generated code (#363)
This commit is contained in:
@ -1,13 +1,11 @@
|
||||
import { registerEnumType } from '@nestjs/graphql';
|
||||
|
||||
export enum TransactionIsolationLevel {
|
||||
ReadUncommitted = 'ReadUncommitted',
|
||||
ReadCommitted = 'ReadCommitted',
|
||||
RepeatableRead = 'RepeatableRead',
|
||||
Serializable = 'Serializable',
|
||||
ReadUncommitted = "ReadUncommitted",
|
||||
ReadCommitted = "ReadCommitted",
|
||||
RepeatableRead = "RepeatableRead",
|
||||
Serializable = "Serializable"
|
||||
}
|
||||
|
||||
registerEnumType(TransactionIsolationLevel, {
|
||||
name: 'TransactionIsolationLevel',
|
||||
description: undefined,
|
||||
});
|
||||
|
||||
registerEnumType(TransactionIsolationLevel, { name: 'TransactionIsolationLevel', description: undefined })
|
||||
|
||||
Reference in New Issue
Block a user