From 9de3b627f6f512c2ab908796d26919b68bc40993 Mon Sep 17 00:00:00 2001 From: Mathis <49148875+mathiswiehl@users.noreply.github.com> Date: Tue, 2 Jul 2019 18:53:47 +0200 Subject: [PATCH] feat: disable eslint for generated files (#165) Since tslint is about to be deprecated people start to migrate to eslint. Therefore extend the convenience of adding a disable-comment to eslint as well. Signed-off-by: Mathis Wiehl --- src/main/printer.ts | 9 +++++++++ src/tests/unit/fixtures/apache/generated/Code.ts | 1 + src/tests/unit/fixtures/apache/generated/SharedEnum.ts | 1 + .../unit/fixtures/apache/generated/SharedService.ts | 1 + .../unit/fixtures/apache/generated/SharedServiceBase.ts | 1 + src/tests/unit/fixtures/apache/generated/SharedStruct.ts | 1 + src/tests/unit/fixtures/apache/generated/SharedUnion.ts | 1 + .../apache/generated/com/test/calculator/Calculator.ts | 1 + .../apache/generated/com/test/calculator/Choice.ts | 1 + .../apache/generated/com/test/calculator/CommonStruct.ts | 1 + .../apache/generated/com/test/calculator/FirstName.ts | 1 + .../apache/generated/com/test/calculator/LastName.ts | 1 + .../apache/generated/com/test/calculator/MyInteger.ts | 1 + .../apache/generated/com/test/calculator/NotAGoodIdea.ts | 1 + .../apache/generated/com/test/calculator/Operation.ts | 1 + .../apache/generated/com/test/calculator/TypedMap.ts | 1 + .../apache/generated/com/test/calculator/Work.ts | 1 + .../apache/generated/com/test/calculator/constants.ts | 1 + .../apache/generated/com/test/calculator/index.ts | 1 + .../apache/generated/com/test/common/AuthException.ts | 1 + .../apache/generated/com/test/common/COMMON_INT.ts | 1 + .../apache/generated/com/test/common/CommonEnum.ts | 1 + .../apache/generated/com/test/common/CommonStruct.ts | 1 + .../apache/generated/com/test/common/CommonUnion.ts | 1 + .../apache/generated/com/test/common/MoreOptions.ts | 1 + .../apache/generated/com/test/common/NotAllowed.ts | 1 + .../apache/generated/com/test/common/OtherCommonUnion.ts | 1 + .../fixtures/apache/generated/com/test/common/index.ts | 1 + .../generated/com/test/exceptions/InvalidOperation.ts | 1 + .../generated/com/test/exceptions/InvalidResult.ts | 1 + .../apache/generated/com/test/exceptions/index.ts | 1 + .../generated/com/test/operation/JankyOperation.ts | 1 + .../apache/generated/com/test/operation/JankyResult.ts | 1 + .../apache/generated/com/test/operation/Operation.ts | 1 + .../apache/generated/com/test/operation/SomethingToDo.ts | 1 + .../apache/generated/com/test/operation/index.ts | 1 + src/tests/unit/fixtures/apache/generated/constants.ts | 1 + src/tests/unit/fixtures/apache/generated/index.ts | 1 + .../unit/fixtures/thrift-server/generated-strict/Code.ts | 1 + .../thrift-server/generated-strict/SharedEnum.ts | 1 + .../thrift-server/generated-strict/SharedService.ts | 1 + .../thrift-server/generated-strict/SharedServiceBase.ts | 1 + .../thrift-server/generated-strict/SharedStruct.ts | 1 + .../thrift-server/generated-strict/SharedUnion.ts | 1 + .../generated-strict/com/test/calculator/Calculator.ts | 1 + .../generated-strict/com/test/calculator/Choice.ts | 1 + .../generated-strict/com/test/calculator/CommonStruct.ts | 1 + .../generated-strict/com/test/calculator/FirstName.ts | 1 + .../generated-strict/com/test/calculator/LastName.ts | 1 + .../generated-strict/com/test/calculator/MyInteger.ts | 1 + .../generated-strict/com/test/calculator/NotAGoodIdea.ts | 1 + .../generated-strict/com/test/calculator/Operation.ts | 1 + .../generated-strict/com/test/calculator/TypedMap.ts | 1 + .../generated-strict/com/test/calculator/Work.ts | 1 + .../generated-strict/com/test/calculator/constants.ts | 1 + .../generated-strict/com/test/calculator/index.ts | 1 + .../generated-strict/com/test/common/AuthException.ts | 1 + .../generated-strict/com/test/common/COMMON_INT.ts | 1 + .../generated-strict/com/test/common/CommonEnum.ts | 1 + .../generated-strict/com/test/common/CommonStruct.ts | 1 + .../generated-strict/com/test/common/CommonUnion.ts | 1 + .../generated-strict/com/test/common/MoreOptions.ts | 1 + .../generated-strict/com/test/common/NotAllowed.ts | 1 + .../generated-strict/com/test/common/OtherCommonUnion.ts | 1 + .../generated-strict/com/test/common/index.ts | 1 + .../com/test/exceptions/InvalidOperation.ts | 1 + .../com/test/exceptions/InvalidResult.ts | 1 + .../generated-strict/com/test/exceptions/index.ts | 1 + .../com/test/operation/JankyOperation.ts | 1 + .../generated-strict/com/test/operation/JankyResult.ts | 1 + .../generated-strict/com/test/operation/Operation.ts | 1 + .../generated-strict/com/test/operation/SomethingToDo.ts | 1 + .../generated-strict/com/test/operation/index.ts | 1 + .../fixtures/thrift-server/generated-strict/constants.ts | 1 + .../fixtures/thrift-server/generated-strict/index.ts | 1 + src/tests/unit/fixtures/thrift-server/generated/Code.ts | 1 + .../unit/fixtures/thrift-server/generated/SharedEnum.ts | 1 + .../fixtures/thrift-server/generated/SharedService.ts | 1 + .../thrift-server/generated/SharedServiceBase.ts | 1 + .../fixtures/thrift-server/generated/SharedStruct.ts | 1 + .../unit/fixtures/thrift-server/generated/SharedUnion.ts | 1 + .../generated/com/test/calculator/Calculator.ts | 1 + .../generated/com/test/calculator/Choice.ts | 1 + .../generated/com/test/calculator/CommonStruct.ts | 1 + .../generated/com/test/calculator/FirstName.ts | 1 + .../generated/com/test/calculator/LastName.ts | 1 + .../generated/com/test/calculator/MyInteger.ts | 1 + .../generated/com/test/calculator/NotAGoodIdea.ts | 1 + .../generated/com/test/calculator/Operation.ts | 1 + .../generated/com/test/calculator/TypedMap.ts | 1 + .../thrift-server/generated/com/test/calculator/Work.ts | 1 + .../generated/com/test/calculator/constants.ts | 1 + .../thrift-server/generated/com/test/calculator/index.ts | 1 + .../generated/com/test/common/AuthException.ts | 1 + .../generated/com/test/common/COMMON_INT.ts | 1 + .../generated/com/test/common/CommonEnum.ts | 1 + .../generated/com/test/common/CommonStruct.ts | 1 + .../generated/com/test/common/CommonUnion.ts | 1 + .../generated/com/test/common/MoreOptions.ts | 1 + .../generated/com/test/common/NotAllowed.ts | 1 + .../generated/com/test/common/OtherCommonUnion.ts | 1 + .../thrift-server/generated/com/test/common/index.ts | 1 + .../generated/com/test/exceptions/InvalidOperation.ts | 1 + .../generated/com/test/exceptions/InvalidResult.ts | 1 + .../thrift-server/generated/com/test/exceptions/index.ts | 1 + .../generated/com/test/operation/JankyOperation.ts | 1 + .../generated/com/test/operation/JankyResult.ts | 1 + .../generated/com/test/operation/Operation.ts | 1 + .../generated/com/test/operation/SomethingToDo.ts | 1 + .../thrift-server/generated/com/test/operation/index.ts | 1 + .../unit/fixtures/thrift-server/generated/constants.ts | 1 + src/tests/unit/fixtures/thrift-server/generated/index.ts | 1 + 112 files changed, 120 insertions(+) diff --git a/src/main/printer.ts b/src/main/printer.ts index 77f6cf44..8ced8f98 100644 --- a/src/main/printer.ts +++ b/src/main/printer.ts @@ -3,6 +3,8 @@ const pkg = require('../../package.json') const tslintDisable: string = ' tslint:disable ' +const eslintDisable: string = ' eslint-disable ' + const prefaceComment: string = ` * Autogenerated by @creditkarma/thrift-typescript v${pkg.version} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING @@ -16,6 +18,13 @@ function generatePreface(req: ts.Statement): void { true, ) + ts.addSyntheticLeadingComment( + req, + ts.SyntaxKind.MultiLineCommentTrivia, + eslintDisable, + true, + ) + ts.addSyntheticLeadingComment( req, ts.SyntaxKind.MultiLineCommentTrivia, diff --git a/src/tests/unit/fixtures/apache/generated/Code.ts b/src/tests/unit/fixtures/apache/generated/Code.ts index 23fea9b9..2763d416 100644 --- a/src/tests/unit/fixtures/apache/generated/Code.ts +++ b/src/tests/unit/fixtures/apache/generated/Code.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/apache/generated/SharedEnum.ts b/src/tests/unit/fixtures/apache/generated/SharedEnum.ts index a2e15342..3f382ea6 100644 --- a/src/tests/unit/fixtures/apache/generated/SharedEnum.ts +++ b/src/tests/unit/fixtures/apache/generated/SharedEnum.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/apache/generated/SharedService.ts b/src/tests/unit/fixtures/apache/generated/SharedService.ts index 79e269c9..3422b0e3 100644 --- a/src/tests/unit/fixtures/apache/generated/SharedService.ts +++ b/src/tests/unit/fixtures/apache/generated/SharedService.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/apache/generated/SharedServiceBase.ts b/src/tests/unit/fixtures/apache/generated/SharedServiceBase.ts index f1af787a..471a2c03 100644 --- a/src/tests/unit/fixtures/apache/generated/SharedServiceBase.ts +++ b/src/tests/unit/fixtures/apache/generated/SharedServiceBase.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/apache/generated/SharedStruct.ts b/src/tests/unit/fixtures/apache/generated/SharedStruct.ts index 0ec8d383..be90f0c5 100644 --- a/src/tests/unit/fixtures/apache/generated/SharedStruct.ts +++ b/src/tests/unit/fixtures/apache/generated/SharedStruct.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/apache/generated/SharedUnion.ts b/src/tests/unit/fixtures/apache/generated/SharedUnion.ts index 2aa1f61f..74d66a12 100644 --- a/src/tests/unit/fixtures/apache/generated/SharedUnion.ts +++ b/src/tests/unit/fixtures/apache/generated/SharedUnion.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/apache/generated/com/test/calculator/Calculator.ts b/src/tests/unit/fixtures/apache/generated/com/test/calculator/Calculator.ts index f75372f0..5b57da9e 100644 --- a/src/tests/unit/fixtures/apache/generated/com/test/calculator/Calculator.ts +++ b/src/tests/unit/fixtures/apache/generated/com/test/calculator/Calculator.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/apache/generated/com/test/calculator/Choice.ts b/src/tests/unit/fixtures/apache/generated/com/test/calculator/Choice.ts index 64838a5f..3113213e 100644 --- a/src/tests/unit/fixtures/apache/generated/com/test/calculator/Choice.ts +++ b/src/tests/unit/fixtures/apache/generated/com/test/calculator/Choice.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/apache/generated/com/test/calculator/CommonStruct.ts b/src/tests/unit/fixtures/apache/generated/com/test/calculator/CommonStruct.ts index 2d599464..a71760ef 100644 --- a/src/tests/unit/fixtures/apache/generated/com/test/calculator/CommonStruct.ts +++ b/src/tests/unit/fixtures/apache/generated/com/test/calculator/CommonStruct.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/apache/generated/com/test/calculator/FirstName.ts b/src/tests/unit/fixtures/apache/generated/com/test/calculator/FirstName.ts index f8f032e0..0c6fcb17 100644 --- a/src/tests/unit/fixtures/apache/generated/com/test/calculator/FirstName.ts +++ b/src/tests/unit/fixtures/apache/generated/com/test/calculator/FirstName.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/apache/generated/com/test/calculator/LastName.ts b/src/tests/unit/fixtures/apache/generated/com/test/calculator/LastName.ts index 311ab8ea..7d7a5e26 100644 --- a/src/tests/unit/fixtures/apache/generated/com/test/calculator/LastName.ts +++ b/src/tests/unit/fixtures/apache/generated/com/test/calculator/LastName.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/apache/generated/com/test/calculator/MyInteger.ts b/src/tests/unit/fixtures/apache/generated/com/test/calculator/MyInteger.ts index a5d924f1..4cd42b2f 100644 --- a/src/tests/unit/fixtures/apache/generated/com/test/calculator/MyInteger.ts +++ b/src/tests/unit/fixtures/apache/generated/com/test/calculator/MyInteger.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/apache/generated/com/test/calculator/NotAGoodIdea.ts b/src/tests/unit/fixtures/apache/generated/com/test/calculator/NotAGoodIdea.ts index aacd060c..d3d2f4d1 100644 --- a/src/tests/unit/fixtures/apache/generated/com/test/calculator/NotAGoodIdea.ts +++ b/src/tests/unit/fixtures/apache/generated/com/test/calculator/NotAGoodIdea.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/apache/generated/com/test/calculator/Operation.ts b/src/tests/unit/fixtures/apache/generated/com/test/calculator/Operation.ts index 924cf730..ce71067a 100644 --- a/src/tests/unit/fixtures/apache/generated/com/test/calculator/Operation.ts +++ b/src/tests/unit/fixtures/apache/generated/com/test/calculator/Operation.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/apache/generated/com/test/calculator/TypedMap.ts b/src/tests/unit/fixtures/apache/generated/com/test/calculator/TypedMap.ts index e6484bbf..f97640d5 100644 --- a/src/tests/unit/fixtures/apache/generated/com/test/calculator/TypedMap.ts +++ b/src/tests/unit/fixtures/apache/generated/com/test/calculator/TypedMap.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/apache/generated/com/test/calculator/Work.ts b/src/tests/unit/fixtures/apache/generated/com/test/calculator/Work.ts index defad145..56de3871 100644 --- a/src/tests/unit/fixtures/apache/generated/com/test/calculator/Work.ts +++ b/src/tests/unit/fixtures/apache/generated/com/test/calculator/Work.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/apache/generated/com/test/calculator/constants.ts b/src/tests/unit/fixtures/apache/generated/com/test/calculator/constants.ts index e023784e..2d01c69d 100644 --- a/src/tests/unit/fixtures/apache/generated/com/test/calculator/constants.ts +++ b/src/tests/unit/fixtures/apache/generated/com/test/calculator/constants.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/apache/generated/com/test/calculator/index.ts b/src/tests/unit/fixtures/apache/generated/com/test/calculator/index.ts index a34d54a4..0b688299 100644 --- a/src/tests/unit/fixtures/apache/generated/com/test/calculator/index.ts +++ b/src/tests/unit/fixtures/apache/generated/com/test/calculator/index.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/apache/generated/com/test/common/AuthException.ts b/src/tests/unit/fixtures/apache/generated/com/test/common/AuthException.ts index 4d04a7ba..2eec7b6b 100644 --- a/src/tests/unit/fixtures/apache/generated/com/test/common/AuthException.ts +++ b/src/tests/unit/fixtures/apache/generated/com/test/common/AuthException.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/apache/generated/com/test/common/COMMON_INT.ts b/src/tests/unit/fixtures/apache/generated/com/test/common/COMMON_INT.ts index 8309649b..a0ac4b6f 100644 --- a/src/tests/unit/fixtures/apache/generated/com/test/common/COMMON_INT.ts +++ b/src/tests/unit/fixtures/apache/generated/com/test/common/COMMON_INT.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/apache/generated/com/test/common/CommonEnum.ts b/src/tests/unit/fixtures/apache/generated/com/test/common/CommonEnum.ts index 573558c9..e801c4a1 100644 --- a/src/tests/unit/fixtures/apache/generated/com/test/common/CommonEnum.ts +++ b/src/tests/unit/fixtures/apache/generated/com/test/common/CommonEnum.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/apache/generated/com/test/common/CommonStruct.ts b/src/tests/unit/fixtures/apache/generated/com/test/common/CommonStruct.ts index 33dd4f4e..887e931a 100644 --- a/src/tests/unit/fixtures/apache/generated/com/test/common/CommonStruct.ts +++ b/src/tests/unit/fixtures/apache/generated/com/test/common/CommonStruct.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/apache/generated/com/test/common/CommonUnion.ts b/src/tests/unit/fixtures/apache/generated/com/test/common/CommonUnion.ts index fd15e46e..d65e71c1 100644 --- a/src/tests/unit/fixtures/apache/generated/com/test/common/CommonUnion.ts +++ b/src/tests/unit/fixtures/apache/generated/com/test/common/CommonUnion.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/apache/generated/com/test/common/MoreOptions.ts b/src/tests/unit/fixtures/apache/generated/com/test/common/MoreOptions.ts index 0af9f2eb..58c57189 100644 --- a/src/tests/unit/fixtures/apache/generated/com/test/common/MoreOptions.ts +++ b/src/tests/unit/fixtures/apache/generated/com/test/common/MoreOptions.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/apache/generated/com/test/common/NotAllowed.ts b/src/tests/unit/fixtures/apache/generated/com/test/common/NotAllowed.ts index 298b71e8..74b4bb5a 100644 --- a/src/tests/unit/fixtures/apache/generated/com/test/common/NotAllowed.ts +++ b/src/tests/unit/fixtures/apache/generated/com/test/common/NotAllowed.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/apache/generated/com/test/common/OtherCommonUnion.ts b/src/tests/unit/fixtures/apache/generated/com/test/common/OtherCommonUnion.ts index c1c4bd94..abfe34dc 100644 --- a/src/tests/unit/fixtures/apache/generated/com/test/common/OtherCommonUnion.ts +++ b/src/tests/unit/fixtures/apache/generated/com/test/common/OtherCommonUnion.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/apache/generated/com/test/common/index.ts b/src/tests/unit/fixtures/apache/generated/com/test/common/index.ts index 818fc365..72342165 100644 --- a/src/tests/unit/fixtures/apache/generated/com/test/common/index.ts +++ b/src/tests/unit/fixtures/apache/generated/com/test/common/index.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/apache/generated/com/test/exceptions/InvalidOperation.ts b/src/tests/unit/fixtures/apache/generated/com/test/exceptions/InvalidOperation.ts index 226a78c1..836d4b4e 100644 --- a/src/tests/unit/fixtures/apache/generated/com/test/exceptions/InvalidOperation.ts +++ b/src/tests/unit/fixtures/apache/generated/com/test/exceptions/InvalidOperation.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/apache/generated/com/test/exceptions/InvalidResult.ts b/src/tests/unit/fixtures/apache/generated/com/test/exceptions/InvalidResult.ts index b463a3b9..dce35a17 100644 --- a/src/tests/unit/fixtures/apache/generated/com/test/exceptions/InvalidResult.ts +++ b/src/tests/unit/fixtures/apache/generated/com/test/exceptions/InvalidResult.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/apache/generated/com/test/exceptions/index.ts b/src/tests/unit/fixtures/apache/generated/com/test/exceptions/index.ts index c172cc5f..90580a2d 100644 --- a/src/tests/unit/fixtures/apache/generated/com/test/exceptions/index.ts +++ b/src/tests/unit/fixtures/apache/generated/com/test/exceptions/index.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/apache/generated/com/test/operation/JankyOperation.ts b/src/tests/unit/fixtures/apache/generated/com/test/operation/JankyOperation.ts index 38738eaa..45e472dd 100644 --- a/src/tests/unit/fixtures/apache/generated/com/test/operation/JankyOperation.ts +++ b/src/tests/unit/fixtures/apache/generated/com/test/operation/JankyOperation.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/apache/generated/com/test/operation/JankyResult.ts b/src/tests/unit/fixtures/apache/generated/com/test/operation/JankyResult.ts index 16ad52b6..11af8d6b 100644 --- a/src/tests/unit/fixtures/apache/generated/com/test/operation/JankyResult.ts +++ b/src/tests/unit/fixtures/apache/generated/com/test/operation/JankyResult.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/apache/generated/com/test/operation/Operation.ts b/src/tests/unit/fixtures/apache/generated/com/test/operation/Operation.ts index 292a3004..fde397cf 100644 --- a/src/tests/unit/fixtures/apache/generated/com/test/operation/Operation.ts +++ b/src/tests/unit/fixtures/apache/generated/com/test/operation/Operation.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/apache/generated/com/test/operation/SomethingToDo.ts b/src/tests/unit/fixtures/apache/generated/com/test/operation/SomethingToDo.ts index bc1e54cb..1f78d7fe 100644 --- a/src/tests/unit/fixtures/apache/generated/com/test/operation/SomethingToDo.ts +++ b/src/tests/unit/fixtures/apache/generated/com/test/operation/SomethingToDo.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/apache/generated/com/test/operation/index.ts b/src/tests/unit/fixtures/apache/generated/com/test/operation/index.ts index db0dbaec..31a5edc6 100644 --- a/src/tests/unit/fixtures/apache/generated/com/test/operation/index.ts +++ b/src/tests/unit/fixtures/apache/generated/com/test/operation/index.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/apache/generated/constants.ts b/src/tests/unit/fixtures/apache/generated/constants.ts index 9bdc1290..f71b7c6c 100644 --- a/src/tests/unit/fixtures/apache/generated/constants.ts +++ b/src/tests/unit/fixtures/apache/generated/constants.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/apache/generated/index.ts b/src/tests/unit/fixtures/apache/generated/index.ts index 459d4702..4f11ba25 100644 --- a/src/tests/unit/fixtures/apache/generated/index.ts +++ b/src/tests/unit/fixtures/apache/generated/index.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/thrift-server/generated-strict/Code.ts b/src/tests/unit/fixtures/thrift-server/generated-strict/Code.ts index c2b2f2fb..1ecddcb3 100644 --- a/src/tests/unit/fixtures/thrift-server/generated-strict/Code.ts +++ b/src/tests/unit/fixtures/thrift-server/generated-strict/Code.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/thrift-server/generated-strict/SharedEnum.ts b/src/tests/unit/fixtures/thrift-server/generated-strict/SharedEnum.ts index a2e15342..3f382ea6 100644 --- a/src/tests/unit/fixtures/thrift-server/generated-strict/SharedEnum.ts +++ b/src/tests/unit/fixtures/thrift-server/generated-strict/SharedEnum.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/thrift-server/generated-strict/SharedService.ts b/src/tests/unit/fixtures/thrift-server/generated-strict/SharedService.ts index 506426cd..0cb4b78a 100644 --- a/src/tests/unit/fixtures/thrift-server/generated-strict/SharedService.ts +++ b/src/tests/unit/fixtures/thrift-server/generated-strict/SharedService.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/thrift-server/generated-strict/SharedServiceBase.ts b/src/tests/unit/fixtures/thrift-server/generated-strict/SharedServiceBase.ts index f00b17b4..768f9209 100644 --- a/src/tests/unit/fixtures/thrift-server/generated-strict/SharedServiceBase.ts +++ b/src/tests/unit/fixtures/thrift-server/generated-strict/SharedServiceBase.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/thrift-server/generated-strict/SharedStruct.ts b/src/tests/unit/fixtures/thrift-server/generated-strict/SharedStruct.ts index 067a1f6a..05e2f010 100644 --- a/src/tests/unit/fixtures/thrift-server/generated-strict/SharedStruct.ts +++ b/src/tests/unit/fixtures/thrift-server/generated-strict/SharedStruct.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/thrift-server/generated-strict/SharedUnion.ts b/src/tests/unit/fixtures/thrift-server/generated-strict/SharedUnion.ts index e8888ae0..7d7c965f 100644 --- a/src/tests/unit/fixtures/thrift-server/generated-strict/SharedUnion.ts +++ b/src/tests/unit/fixtures/thrift-server/generated-strict/SharedUnion.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/calculator/Calculator.ts b/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/calculator/Calculator.ts index 52f9a120..50118991 100644 --- a/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/calculator/Calculator.ts +++ b/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/calculator/Calculator.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/calculator/Choice.ts b/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/calculator/Choice.ts index d6dfabff..2d4e4e59 100644 --- a/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/calculator/Choice.ts +++ b/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/calculator/Choice.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/calculator/CommonStruct.ts b/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/calculator/CommonStruct.ts index d730f135..58369ce3 100644 --- a/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/calculator/CommonStruct.ts +++ b/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/calculator/CommonStruct.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/calculator/FirstName.ts b/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/calculator/FirstName.ts index b1fa7f04..e9614605 100644 --- a/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/calculator/FirstName.ts +++ b/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/calculator/FirstName.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/calculator/LastName.ts b/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/calculator/LastName.ts index 3ee3263b..e023897c 100644 --- a/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/calculator/LastName.ts +++ b/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/calculator/LastName.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/calculator/MyInteger.ts b/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/calculator/MyInteger.ts index a5d924f1..4cd42b2f 100644 --- a/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/calculator/MyInteger.ts +++ b/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/calculator/MyInteger.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/calculator/NotAGoodIdea.ts b/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/calculator/NotAGoodIdea.ts index 8ab780ab..822ad78f 100644 --- a/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/calculator/NotAGoodIdea.ts +++ b/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/calculator/NotAGoodIdea.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/calculator/Operation.ts b/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/calculator/Operation.ts index bc9b089a..e7624326 100644 --- a/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/calculator/Operation.ts +++ b/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/calculator/Operation.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/calculator/TypedMap.ts b/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/calculator/TypedMap.ts index d4bf4770..a78fa3a2 100644 --- a/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/calculator/TypedMap.ts +++ b/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/calculator/TypedMap.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/calculator/Work.ts b/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/calculator/Work.ts index 8fc92087..5370f5f1 100644 --- a/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/calculator/Work.ts +++ b/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/calculator/Work.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/calculator/constants.ts b/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/calculator/constants.ts index e023784e..2d01c69d 100644 --- a/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/calculator/constants.ts +++ b/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/calculator/constants.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/calculator/index.ts b/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/calculator/index.ts index a34d54a4..0b688299 100644 --- a/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/calculator/index.ts +++ b/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/calculator/index.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/common/AuthException.ts b/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/common/AuthException.ts index e1f81f97..715b357d 100644 --- a/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/common/AuthException.ts +++ b/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/common/AuthException.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/common/COMMON_INT.ts b/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/common/COMMON_INT.ts index a5a76695..46f91240 100644 --- a/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/common/COMMON_INT.ts +++ b/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/common/COMMON_INT.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/common/CommonEnum.ts b/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/common/CommonEnum.ts index f53d763f..822a8e28 100644 --- a/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/common/CommonEnum.ts +++ b/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/common/CommonEnum.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/common/CommonStruct.ts b/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/common/CommonStruct.ts index b809acdd..a34263a3 100644 --- a/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/common/CommonStruct.ts +++ b/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/common/CommonStruct.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/common/CommonUnion.ts b/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/common/CommonUnion.ts index 91481a9f..c06e078d 100644 --- a/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/common/CommonUnion.ts +++ b/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/common/CommonUnion.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/common/MoreOptions.ts b/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/common/MoreOptions.ts index 4614bd37..6f6f3a05 100644 --- a/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/common/MoreOptions.ts +++ b/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/common/MoreOptions.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/common/NotAllowed.ts b/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/common/NotAllowed.ts index db03ab4f..569a3a2d 100644 --- a/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/common/NotAllowed.ts +++ b/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/common/NotAllowed.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/common/OtherCommonUnion.ts b/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/common/OtherCommonUnion.ts index 9b8cee3b..16d7eda1 100644 --- a/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/common/OtherCommonUnion.ts +++ b/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/common/OtherCommonUnion.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/common/index.ts b/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/common/index.ts index 818fc365..72342165 100644 --- a/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/common/index.ts +++ b/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/common/index.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/exceptions/InvalidOperation.ts b/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/exceptions/InvalidOperation.ts index 205780d9..2cdfcc6b 100644 --- a/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/exceptions/InvalidOperation.ts +++ b/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/exceptions/InvalidOperation.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/exceptions/InvalidResult.ts b/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/exceptions/InvalidResult.ts index ba5c5522..399f58b6 100644 --- a/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/exceptions/InvalidResult.ts +++ b/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/exceptions/InvalidResult.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/exceptions/index.ts b/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/exceptions/index.ts index c172cc5f..90580a2d 100644 --- a/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/exceptions/index.ts +++ b/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/exceptions/index.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/operation/JankyOperation.ts b/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/operation/JankyOperation.ts index c6ff8f24..75df32e6 100644 --- a/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/operation/JankyOperation.ts +++ b/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/operation/JankyOperation.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/operation/JankyResult.ts b/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/operation/JankyResult.ts index 9015e9b5..5fa4fba0 100644 --- a/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/operation/JankyResult.ts +++ b/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/operation/JankyResult.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/operation/Operation.ts b/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/operation/Operation.ts index 292a3004..fde397cf 100644 --- a/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/operation/Operation.ts +++ b/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/operation/Operation.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/operation/SomethingToDo.ts b/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/operation/SomethingToDo.ts index 8dfc6728..3bad923d 100644 --- a/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/operation/SomethingToDo.ts +++ b/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/operation/SomethingToDo.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/operation/index.ts b/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/operation/index.ts index db0dbaec..31a5edc6 100644 --- a/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/operation/index.ts +++ b/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/operation/index.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/thrift-server/generated-strict/constants.ts b/src/tests/unit/fixtures/thrift-server/generated-strict/constants.ts index 9bdc1290..f71b7c6c 100644 --- a/src/tests/unit/fixtures/thrift-server/generated-strict/constants.ts +++ b/src/tests/unit/fixtures/thrift-server/generated-strict/constants.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/thrift-server/generated-strict/index.ts b/src/tests/unit/fixtures/thrift-server/generated-strict/index.ts index 459d4702..4f11ba25 100644 --- a/src/tests/unit/fixtures/thrift-server/generated-strict/index.ts +++ b/src/tests/unit/fixtures/thrift-server/generated-strict/index.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/thrift-server/generated/Code.ts b/src/tests/unit/fixtures/thrift-server/generated/Code.ts index c2b2f2fb..1ecddcb3 100644 --- a/src/tests/unit/fixtures/thrift-server/generated/Code.ts +++ b/src/tests/unit/fixtures/thrift-server/generated/Code.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/thrift-server/generated/SharedEnum.ts b/src/tests/unit/fixtures/thrift-server/generated/SharedEnum.ts index a2e15342..3f382ea6 100644 --- a/src/tests/unit/fixtures/thrift-server/generated/SharedEnum.ts +++ b/src/tests/unit/fixtures/thrift-server/generated/SharedEnum.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/thrift-server/generated/SharedService.ts b/src/tests/unit/fixtures/thrift-server/generated/SharedService.ts index a5777612..067b754e 100644 --- a/src/tests/unit/fixtures/thrift-server/generated/SharedService.ts +++ b/src/tests/unit/fixtures/thrift-server/generated/SharedService.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/thrift-server/generated/SharedServiceBase.ts b/src/tests/unit/fixtures/thrift-server/generated/SharedServiceBase.ts index f00b17b4..768f9209 100644 --- a/src/tests/unit/fixtures/thrift-server/generated/SharedServiceBase.ts +++ b/src/tests/unit/fixtures/thrift-server/generated/SharedServiceBase.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/thrift-server/generated/SharedStruct.ts b/src/tests/unit/fixtures/thrift-server/generated/SharedStruct.ts index 067a1f6a..05e2f010 100644 --- a/src/tests/unit/fixtures/thrift-server/generated/SharedStruct.ts +++ b/src/tests/unit/fixtures/thrift-server/generated/SharedStruct.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/thrift-server/generated/SharedUnion.ts b/src/tests/unit/fixtures/thrift-server/generated/SharedUnion.ts index 49f26566..b0796642 100644 --- a/src/tests/unit/fixtures/thrift-server/generated/SharedUnion.ts +++ b/src/tests/unit/fixtures/thrift-server/generated/SharedUnion.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/thrift-server/generated/com/test/calculator/Calculator.ts b/src/tests/unit/fixtures/thrift-server/generated/com/test/calculator/Calculator.ts index b3fbb2b6..ee893abb 100644 --- a/src/tests/unit/fixtures/thrift-server/generated/com/test/calculator/Calculator.ts +++ b/src/tests/unit/fixtures/thrift-server/generated/com/test/calculator/Calculator.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/thrift-server/generated/com/test/calculator/Choice.ts b/src/tests/unit/fixtures/thrift-server/generated/com/test/calculator/Choice.ts index 877d752c..85adfd29 100644 --- a/src/tests/unit/fixtures/thrift-server/generated/com/test/calculator/Choice.ts +++ b/src/tests/unit/fixtures/thrift-server/generated/com/test/calculator/Choice.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/thrift-server/generated/com/test/calculator/CommonStruct.ts b/src/tests/unit/fixtures/thrift-server/generated/com/test/calculator/CommonStruct.ts index d730f135..58369ce3 100644 --- a/src/tests/unit/fixtures/thrift-server/generated/com/test/calculator/CommonStruct.ts +++ b/src/tests/unit/fixtures/thrift-server/generated/com/test/calculator/CommonStruct.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/thrift-server/generated/com/test/calculator/FirstName.ts b/src/tests/unit/fixtures/thrift-server/generated/com/test/calculator/FirstName.ts index b1fa7f04..e9614605 100644 --- a/src/tests/unit/fixtures/thrift-server/generated/com/test/calculator/FirstName.ts +++ b/src/tests/unit/fixtures/thrift-server/generated/com/test/calculator/FirstName.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/thrift-server/generated/com/test/calculator/LastName.ts b/src/tests/unit/fixtures/thrift-server/generated/com/test/calculator/LastName.ts index 3ee3263b..e023897c 100644 --- a/src/tests/unit/fixtures/thrift-server/generated/com/test/calculator/LastName.ts +++ b/src/tests/unit/fixtures/thrift-server/generated/com/test/calculator/LastName.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/thrift-server/generated/com/test/calculator/MyInteger.ts b/src/tests/unit/fixtures/thrift-server/generated/com/test/calculator/MyInteger.ts index a5d924f1..4cd42b2f 100644 --- a/src/tests/unit/fixtures/thrift-server/generated/com/test/calculator/MyInteger.ts +++ b/src/tests/unit/fixtures/thrift-server/generated/com/test/calculator/MyInteger.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/thrift-server/generated/com/test/calculator/NotAGoodIdea.ts b/src/tests/unit/fixtures/thrift-server/generated/com/test/calculator/NotAGoodIdea.ts index 8ab780ab..822ad78f 100644 --- a/src/tests/unit/fixtures/thrift-server/generated/com/test/calculator/NotAGoodIdea.ts +++ b/src/tests/unit/fixtures/thrift-server/generated/com/test/calculator/NotAGoodIdea.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/thrift-server/generated/com/test/calculator/Operation.ts b/src/tests/unit/fixtures/thrift-server/generated/com/test/calculator/Operation.ts index bc9b089a..e7624326 100644 --- a/src/tests/unit/fixtures/thrift-server/generated/com/test/calculator/Operation.ts +++ b/src/tests/unit/fixtures/thrift-server/generated/com/test/calculator/Operation.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/thrift-server/generated/com/test/calculator/TypedMap.ts b/src/tests/unit/fixtures/thrift-server/generated/com/test/calculator/TypedMap.ts index d4bf4770..a78fa3a2 100644 --- a/src/tests/unit/fixtures/thrift-server/generated/com/test/calculator/TypedMap.ts +++ b/src/tests/unit/fixtures/thrift-server/generated/com/test/calculator/TypedMap.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/thrift-server/generated/com/test/calculator/Work.ts b/src/tests/unit/fixtures/thrift-server/generated/com/test/calculator/Work.ts index 8fc92087..5370f5f1 100644 --- a/src/tests/unit/fixtures/thrift-server/generated/com/test/calculator/Work.ts +++ b/src/tests/unit/fixtures/thrift-server/generated/com/test/calculator/Work.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/thrift-server/generated/com/test/calculator/constants.ts b/src/tests/unit/fixtures/thrift-server/generated/com/test/calculator/constants.ts index e023784e..2d01c69d 100644 --- a/src/tests/unit/fixtures/thrift-server/generated/com/test/calculator/constants.ts +++ b/src/tests/unit/fixtures/thrift-server/generated/com/test/calculator/constants.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/thrift-server/generated/com/test/calculator/index.ts b/src/tests/unit/fixtures/thrift-server/generated/com/test/calculator/index.ts index a34d54a4..0b688299 100644 --- a/src/tests/unit/fixtures/thrift-server/generated/com/test/calculator/index.ts +++ b/src/tests/unit/fixtures/thrift-server/generated/com/test/calculator/index.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/thrift-server/generated/com/test/common/AuthException.ts b/src/tests/unit/fixtures/thrift-server/generated/com/test/common/AuthException.ts index e1f81f97..715b357d 100644 --- a/src/tests/unit/fixtures/thrift-server/generated/com/test/common/AuthException.ts +++ b/src/tests/unit/fixtures/thrift-server/generated/com/test/common/AuthException.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/thrift-server/generated/com/test/common/COMMON_INT.ts b/src/tests/unit/fixtures/thrift-server/generated/com/test/common/COMMON_INT.ts index a5a76695..46f91240 100644 --- a/src/tests/unit/fixtures/thrift-server/generated/com/test/common/COMMON_INT.ts +++ b/src/tests/unit/fixtures/thrift-server/generated/com/test/common/COMMON_INT.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/thrift-server/generated/com/test/common/CommonEnum.ts b/src/tests/unit/fixtures/thrift-server/generated/com/test/common/CommonEnum.ts index f53d763f..822a8e28 100644 --- a/src/tests/unit/fixtures/thrift-server/generated/com/test/common/CommonEnum.ts +++ b/src/tests/unit/fixtures/thrift-server/generated/com/test/common/CommonEnum.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/thrift-server/generated/com/test/common/CommonStruct.ts b/src/tests/unit/fixtures/thrift-server/generated/com/test/common/CommonStruct.ts index b809acdd..a34263a3 100644 --- a/src/tests/unit/fixtures/thrift-server/generated/com/test/common/CommonStruct.ts +++ b/src/tests/unit/fixtures/thrift-server/generated/com/test/common/CommonStruct.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/thrift-server/generated/com/test/common/CommonUnion.ts b/src/tests/unit/fixtures/thrift-server/generated/com/test/common/CommonUnion.ts index 81d4ee6f..84b1d794 100644 --- a/src/tests/unit/fixtures/thrift-server/generated/com/test/common/CommonUnion.ts +++ b/src/tests/unit/fixtures/thrift-server/generated/com/test/common/CommonUnion.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/thrift-server/generated/com/test/common/MoreOptions.ts b/src/tests/unit/fixtures/thrift-server/generated/com/test/common/MoreOptions.ts index 25cc3fcb..79194e02 100644 --- a/src/tests/unit/fixtures/thrift-server/generated/com/test/common/MoreOptions.ts +++ b/src/tests/unit/fixtures/thrift-server/generated/com/test/common/MoreOptions.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/thrift-server/generated/com/test/common/NotAllowed.ts b/src/tests/unit/fixtures/thrift-server/generated/com/test/common/NotAllowed.ts index db03ab4f..569a3a2d 100644 --- a/src/tests/unit/fixtures/thrift-server/generated/com/test/common/NotAllowed.ts +++ b/src/tests/unit/fixtures/thrift-server/generated/com/test/common/NotAllowed.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/thrift-server/generated/com/test/common/OtherCommonUnion.ts b/src/tests/unit/fixtures/thrift-server/generated/com/test/common/OtherCommonUnion.ts index 60e6cbbc..56f9dc2e 100644 --- a/src/tests/unit/fixtures/thrift-server/generated/com/test/common/OtherCommonUnion.ts +++ b/src/tests/unit/fixtures/thrift-server/generated/com/test/common/OtherCommonUnion.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/thrift-server/generated/com/test/common/index.ts b/src/tests/unit/fixtures/thrift-server/generated/com/test/common/index.ts index 818fc365..72342165 100644 --- a/src/tests/unit/fixtures/thrift-server/generated/com/test/common/index.ts +++ b/src/tests/unit/fixtures/thrift-server/generated/com/test/common/index.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/thrift-server/generated/com/test/exceptions/InvalidOperation.ts b/src/tests/unit/fixtures/thrift-server/generated/com/test/exceptions/InvalidOperation.ts index 205780d9..2cdfcc6b 100644 --- a/src/tests/unit/fixtures/thrift-server/generated/com/test/exceptions/InvalidOperation.ts +++ b/src/tests/unit/fixtures/thrift-server/generated/com/test/exceptions/InvalidOperation.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/thrift-server/generated/com/test/exceptions/InvalidResult.ts b/src/tests/unit/fixtures/thrift-server/generated/com/test/exceptions/InvalidResult.ts index ba5c5522..399f58b6 100644 --- a/src/tests/unit/fixtures/thrift-server/generated/com/test/exceptions/InvalidResult.ts +++ b/src/tests/unit/fixtures/thrift-server/generated/com/test/exceptions/InvalidResult.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/thrift-server/generated/com/test/exceptions/index.ts b/src/tests/unit/fixtures/thrift-server/generated/com/test/exceptions/index.ts index c172cc5f..90580a2d 100644 --- a/src/tests/unit/fixtures/thrift-server/generated/com/test/exceptions/index.ts +++ b/src/tests/unit/fixtures/thrift-server/generated/com/test/exceptions/index.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/thrift-server/generated/com/test/operation/JankyOperation.ts b/src/tests/unit/fixtures/thrift-server/generated/com/test/operation/JankyOperation.ts index c6ff8f24..75df32e6 100644 --- a/src/tests/unit/fixtures/thrift-server/generated/com/test/operation/JankyOperation.ts +++ b/src/tests/unit/fixtures/thrift-server/generated/com/test/operation/JankyOperation.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/thrift-server/generated/com/test/operation/JankyResult.ts b/src/tests/unit/fixtures/thrift-server/generated/com/test/operation/JankyResult.ts index 9015e9b5..5fa4fba0 100644 --- a/src/tests/unit/fixtures/thrift-server/generated/com/test/operation/JankyResult.ts +++ b/src/tests/unit/fixtures/thrift-server/generated/com/test/operation/JankyResult.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/thrift-server/generated/com/test/operation/Operation.ts b/src/tests/unit/fixtures/thrift-server/generated/com/test/operation/Operation.ts index 292a3004..fde397cf 100644 --- a/src/tests/unit/fixtures/thrift-server/generated/com/test/operation/Operation.ts +++ b/src/tests/unit/fixtures/thrift-server/generated/com/test/operation/Operation.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/thrift-server/generated/com/test/operation/SomethingToDo.ts b/src/tests/unit/fixtures/thrift-server/generated/com/test/operation/SomethingToDo.ts index 8dfc6728..3bad923d 100644 --- a/src/tests/unit/fixtures/thrift-server/generated/com/test/operation/SomethingToDo.ts +++ b/src/tests/unit/fixtures/thrift-server/generated/com/test/operation/SomethingToDo.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/thrift-server/generated/com/test/operation/index.ts b/src/tests/unit/fixtures/thrift-server/generated/com/test/operation/index.ts index db0dbaec..31a5edc6 100644 --- a/src/tests/unit/fixtures/thrift-server/generated/com/test/operation/index.ts +++ b/src/tests/unit/fixtures/thrift-server/generated/com/test/operation/index.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/thrift-server/generated/constants.ts b/src/tests/unit/fixtures/thrift-server/generated/constants.ts index 9bdc1290..f71b7c6c 100644 --- a/src/tests/unit/fixtures/thrift-server/generated/constants.ts +++ b/src/tests/unit/fixtures/thrift-server/generated/constants.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING diff --git a/src/tests/unit/fixtures/thrift-server/generated/index.ts b/src/tests/unit/fixtures/thrift-server/generated/index.ts index 459d4702..4f11ba25 100644 --- a/src/tests/unit/fixtures/thrift-server/generated/index.ts +++ b/src/tests/unit/fixtures/thrift-server/generated/index.ts @@ -1,4 +1,5 @@ /* tslint:disable */ +/* eslint-disable */ /* * Autogenerated by @creditkarma/thrift-typescript v{{VERSION}} * DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING