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 69b2d4df..b677339f 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 25a7bbe5..f4b82781 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 08838f9d..ace7b516 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 a9541194..56d6e9b4 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 a12e4c1e..d9dda1c7 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 0d87d5d8..4f6bdb0d 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 f34aa9ae..c8ac45f3 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 94503fa0..f6841c3d 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 428f0d2a..ef063e8c 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 b7d837d3..3607c5a5 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 8e860bc5..192e1e16 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 6ed65b44..0b90791d 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 1308b5a7..c428c032 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 a8b73de6..cdf1cb79 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 298be59b..31154598 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 f1de9c35..8f5d039c 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 25a7bbe5..f4b82781 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 594ba29c..ef6af1f3 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 a9541194..56d6e9b4 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 a12e4c1e..d9dda1c7 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 f0607749..c746f2b5 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 c97d5387..1efda564 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 a1508c62..534feb14 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 428f0d2a..ef063e8c 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 b7d837d3..3607c5a5 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 8e860bc5..192e1e16 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 6ed65b44..0b90791d 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 1308b5a7..c428c032 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 4a48ca8c..f42d314d 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 298be59b..31154598 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 f1de9c35..8f5d039c 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