Skip to content

Commit 1a1afa2

Browse files
committed
fixup: lint
Signed-off-by: Todd Baert <[email protected]>
1 parent 0b6f837 commit 1a1afa2

File tree

4 files changed

+3
-5
lines changed

4 files changed

+3
-5
lines changed

libs/providers/ofrep/src/lib/ofrep-provider.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
import { OFREPProvider, OFREPProviderOptions } from './ofrep-provider';
2-
3-
// eslint-disable-next-line @nx/enforce-module-boundaries
42
import {
53
OFREPApiTooManyRequestsError,
64
OFREPApiUnauthorizedError,
75
OFREPApiUnexpectedResponseError,
86
OFREPForbiddenError,
97
} from '@openfeature/ofrep-core';
108
import { ErrorCode, GeneralError, TypeMismatchError } from '@openfeature/server-sdk';
9+
// eslint-disable-next-line @nx/enforce-module-boundaries
1110
import { TEST_FLAG_METADATA } from 'libs/shared/ofrep-core/src/test/test-constants';
11+
// eslint-disable-next-line @nx/enforce-module-boundaries
1212
import { server } from '../../../../shared/ofrep-core/src/test/mock-service-worker';
1313

1414
describe('OFREPProvider should', () => {

libs/shared/ofrep-core/src/lib/model/bulk-evaluation.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ export interface BulkEvaluationSuccessResponse extends MetadataResponse {
2424
flags?: EvaluationResponse[];
2525
}
2626

27-
2827
export type BulkEvaluationNotModifiedResponse = undefined;
2928

3029
export function isBulkEvaluationSuccessResponse(response: unknown): response is BulkEvaluationSuccessResponse {

libs/shared/ofrep-core/src/lib/model/evaluation.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import type { ErrorCode, EvaluationContext, FlagMetadata, FlagValue, ResolutionReason } from '@openfeature/core';
22

3-
43
export interface EvaluationRequest {
54
/**
65
* Context information for flag evaluation

libs/shared/ofrep-core/src/test/test-constants.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { FlagMetadata } from "@openfeature/core";
1+
import { FlagMetadata } from '@openfeature/core';
22

33
export const TEST_FLAG_METADATA: FlagMetadata = {
44
booleanKey: true,

0 commit comments

Comments
 (0)