Skip to content

Commit

Permalink
chore: remove eslint-disable
Browse files Browse the repository at this point in the history
  • Loading branch information
trivikr committed Jul 11, 2024
1 parent a602763 commit bed7866
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
// This file is generated by scripts/generateClientTypesMap/index.ts
// Do not edit this file directly. Instead, edit the script and run it to regenerate this file.

/* eslint-disable @typescript-eslint/naming-convention */
export const CLIENT_REQ_RESP_TYPES_MAP: Record<string, Record<string, string>> = {
ACM: {
AddTagsToCertificateRequest: "AddTagsToCertificateCommandInput",
Expand Down
1 change: 0 additions & 1 deletion src/transforms/v2-to-v3/config/CLIENT_TYPES_MAP.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
// This file is generated by scripts/generateClientTypesMap/index.ts
// Do not edit this file directly. Instead, edit the script and run it to regenerate this file.

/* eslint-disable @typescript-eslint/naming-convention */
export const CLIENT_TYPES_MAP: Record<string, Record<string, string>> = {
ACM: {
Arn: "string",
Expand Down
1 change: 0 additions & 1 deletion src/utils/getJsCodeshiftParser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ const defaultExtensions = DEFAULT_EXTENSIONS.concat(["ts", "tsx"])
.sort()
.join(",");

/* eslint-disable @typescript-eslint/naming-convention */
export const getJsCodeshiftParser = () =>
argsParser.options({
transform: {
Expand Down
2 changes: 1 addition & 1 deletion src/utils/getTransforms.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ export const getTransforms = () =>
.filter((dirent) => dirent.isDirectory())
.map((dirent) => dirent.name)
.map((dirName) => {
const { name, description, options } = require(`../transforms/${dirName}/transform`); // eslint-disable-line
const { name, description, options } = require(`../transforms/${dirName}/transform`);
return { name, description, options } as AwsSdkJsCodemodTransform;
});

0 comments on commit bed7866

Please sign in to comment.