Skip to content

Commit

Permalink
[Tables] Remove some of the ignoring comments of ts-naming-options (#…
Browse files Browse the repository at this point in the history
…11507)

* [Tables] Remove some of the ignoring comments of ts-naming-options

* remove some more
  • Loading branch information
deyaaeldeen authored Sep 25, 2020
1 parent 964cb52 commit 2eb4260
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 7 deletions.
3 changes: 0 additions & 3 deletions sdk/tables/data-tables/src/TableClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
);
/**
Expand All @@ -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 =
Expand Down
4 changes: 0 additions & 4 deletions sdk/tables/data-tables/src/TableServiceClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
);
/**
Expand All @@ -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 =
Expand Down

0 comments on commit 2eb4260

Please sign in to comment.