chore: Disable TS and eslint checks in generated files (fixes LNG-113) (#662)

disable ts and eslint checks in generated files
This commit is contained in:
Dima 2023-02-08 14:40:46 +03:00 committed by GitHub
parent d256f56982
commit 9991a07140
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -20,13 +20,16 @@ case class OutputFile(res: AquaRes) {
(
airs,
s"""${Header.header(isJs, isCommonJS)}
s"""/* eslint-disable */
|// @ts-nocheck
|${Header.header(isJs, isCommonJS)}
|
|// Services
|$services
|// Functions
|${functions.mkString("\n\n")}
|""".stripMargin
|
|/* eslint-enable */""".stripMargin
)
}