Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
rddimon committed Nov 15, 2024
1 parent 4dd1e7b commit 010379d
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion src/globals.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export default class Globals {
public static CFFuncNames = {
fnImport: "Fn::ImportValue",
ref: "Ref"
}
};

/* eslint camelcase: ["error", {allow: ["^tls_"]}] */
public static tlsVersions = {
Expand Down
20 changes: 10 additions & 10 deletions src/models/api-gateway-map.ts
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
class ApiGatewayMap {
public apiId: string;
public basePath: string;
public stage: string;
public apiMappingId: string | null;
public apiId: string;
public basePath: string;
public stage: string;
public apiMappingId: string | null;

constructor (apiId: string, basePath: string, stage: string, apiMappingId: string | null) {
this.apiId = apiId;
this.basePath = basePath;
this.stage = stage;
this.apiMappingId = apiMappingId;
}
constructor (apiId: string, basePath: string, stage: string, apiMappingId: string | null) {
this.apiId = apiId;
this.basePath = basePath;
this.stage = stage;
this.apiMappingId = apiMappingId;
}
}

export = ApiGatewayMap;

0 comments on commit 010379d

Please sign in to comment.