Skip to content

Commit

Permalink
Fix lint issues
Browse files Browse the repository at this point in the history
Signed-off-by: Andrew W. Harn <[email protected]>
  • Loading branch information
awharn committed Jun 12, 2024
1 parent c1d37c9 commit ec3e09c
Show file tree
Hide file tree
Showing 18 changed files with 18 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
*
*/

/* eslint-disable deprecation/deprecation */
import * as CoreUtils from "../../../src/utils/CoreUtils";

jest.mock("fs");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,13 @@
*/

/* eslint-disable jest/expect-expect */
/* eslint-disable deprecation/deprecation */
import { TestOperations1 } from "../operation/TestOperations1";
import { TestOperations4 } from "../operation/TestOperations4";

import { TestOperations3 } from "../operation/TestOperations3";

import { IOperationResult, Operation, Operations } from "../../index";
import { TestLogger } from "../../../../__tests__/src/TestLogger";

const logger = TestLogger.getTestLogger();

class OperationTestConstants {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
*
*/

/* eslint-disable deprecation/deprecation */
import { TestSubOp1 } from "./subops/TestSubOp1";
import { TestSubOp2 } from "./subops/TestSubOp2";
import { TestSubOpNoUndo } from "./subops/TestSubOpNoUndo";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
*
*/

/* eslint-disable deprecation/deprecation */
import { TestSubOp4 } from "./subops/TestSubOp4";
import { TestSubOp5 } from "./subops/TestSubOp5";
import { Operations } from "../../../index";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
*
*/

/* eslint-disable deprecation/deprecation */
import { TestSubOp6 } from "./subops/TestSubOp6";
import { TestOperations1 } from "./TestOperations1";
import { TestOperations2 } from "./TestOperations2";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
*
*/

/* eslint-disable deprecation/deprecation */
import { TestOperations1 } from "./TestOperations1";
import { TestOperations2 } from "./TestOperations2";
import { TestSubOpFail } from "./subops/TestSubOpFail";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
*
*/

/* eslint-disable deprecation/deprecation */
import { TestOperations1 } from "./TestOperations1";
import { TestSubOpDiverge } from "./subops/TestSubOpDiverge";
import { Operations } from "../../../index";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
*
*/

/* eslint-disable deprecation/deprecation */
import { IOperationCompleted, IOperationUndoCompleted, Operation } from "../../../../index";

export class TestSubOp1 extends Operation<any> {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
*
*/

/* eslint-disable deprecation/deprecation */
import { IOperationCompleted, IOperationUndoCompleted, Operation } from "../../../../index";

export class TestSubOp2 extends Operation<any> {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
*
*/

/* eslint-disable deprecation/deprecation */
import { IOperationCompleted, IOperationUndoCompleted, Operation } from "../../../../index";
import { TestLogger } from "../../../../../__tests__/src/TestLogger";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
*
*/

/* eslint-disable deprecation/deprecation */
import { IOperationCompleted, IOperationUndoCompleted, Operation } from "../../../../index";
import { TestLogger } from "../../../../../__tests__/src/TestLogger";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
*
*/

/* eslint-disable deprecation/deprecation */
import { IOperationCompleted, IOperationUndoCompleted, Operation } from "../../../../index";
import { TestLogger } from "../../../../../__tests__/src/TestLogger";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
*
*/

/* eslint-disable deprecation/deprecation */
import { TestOperations2 } from "../TestOperations2";
import { IOperationCompleted, IOperationUndoCompleted, Operation } from "../../../../index";
import { TestLogger } from "../../../../../__tests__/src/TestLogger";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
*
*/

/* eslint-disable deprecation/deprecation */
import { IOperationCompleted, IOperationUndoCompleted, Operation } from "../../../../index";

export class TestSubOpFail extends Operation<any> {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
*
*/

/* eslint-disable deprecation/deprecation */
import { IOperationCompleted, IOperationUndoCompleted, Operation } from "../../../../index";
import { TestLogger } from "../../../../../__tests__/src/TestLogger";

Expand Down
1 change: 1 addition & 0 deletions packages/imperative/src/operations/src/Operation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
*
*/

/* eslint-disable deprecation/deprecation */
import { IOperationResult } from "./doc/IOperationResult";
import { TaskStage } from "./TaskStage";
import * as fs from "fs";
Expand Down
1 change: 1 addition & 0 deletions packages/imperative/src/operations/src/Operations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
*
*/

/* eslint-disable deprecation/deprecation */
import { IOperationResultReady, Operation } from "./Operation";
import { IOperationResult } from "./doc/IOperationResult";
import { TextUtils } from "../../utilities";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
*
*/

/* eslint-disable deprecation/deprecation */
import { Operation } from "../Operation";

export interface IOperationResult<T> {
Expand Down

0 comments on commit ec3e09c

Please sign in to comment.