From 0c82098ea9753b3f8480e8bed413a4c36c96f98e Mon Sep 17 00:00:00 2001 From: deyaaeldeen Date: Fri, 25 Sep 2020 12:04:05 -0400 Subject: [PATCH 1/2] [Tables] Remove some of the ignoring comments of ts-naming-options --- sdk/tables/data-tables/src/TableClient.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/sdk/tables/data-tables/src/TableClient.ts b/sdk/tables/data-tables/src/TableClient.ts index d5ea7f21e16f..bb98f3f1b2f5 100644 --- a/sdk/tables/data-tables/src/TableClient.ts +++ b/sdk/tables/data-tables/src/TableClient.ts @@ -77,7 +77,6 @@ export class TableClient { url: string, tableName: string, credential: TablesSharedKeyCredential, - // eslint-disable-next-line @azure/azure-sdk/ts-naming-options options?: TableClientOptions ); /** @@ -103,13 +102,11 @@ export class TableClient { * ``` */ - // eslint-disable-next-line @azure/azure-sdk/ts-naming-options constructor(url: string, tableName: string, options?: TableClientOptions); constructor( url: string, tableName: string, credentialOrOptions?: TablesSharedKeyCredential | TableClientOptions, - // eslint-disable-next-line @azure/azure-sdk/ts-naming-options options: TableClientOptions = {} ) { const credential = From fb80d0585f5e364714054c3231dbf537d342d47a Mon Sep 17 00:00:00 2001 From: deyaaeldeen Date: Fri, 25 Sep 2020 12:07:26 -0400 Subject: [PATCH 2/2] remove some more --- sdk/tables/data-tables/src/TableServiceClient.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/sdk/tables/data-tables/src/TableServiceClient.ts b/sdk/tables/data-tables/src/TableServiceClient.ts index 34b582952922..805c941640bb 100644 --- a/sdk/tables/data-tables/src/TableServiceClient.ts +++ b/sdk/tables/data-tables/src/TableServiceClient.ts @@ -67,11 +67,9 @@ export class TableServiceClient { * ); * ``` */ - // eslint-disable-next-line @azure/azure-sdk/ts-naming-options constructor( url: string, credential: TablesSharedKeyCredential, - // eslint-disable-next-line @azure/azure-sdk/ts-naming-options options?: TableServiceClientOptions ); /** @@ -92,12 +90,10 @@ export class TableServiceClient { * ); * ``` */ - // eslint-disable-next-line @azure/azure-sdk/ts-naming-options constructor(url: string, options?: TableServiceClientOptions); constructor( url: string, credentialOrOptions?: TablesSharedKeyCredential | TableServiceClientOptions, - // eslint-disable-next-line @azure/azure-sdk/ts-naming-options options?: TableServiceClientOptions ) { const credential =