Skip to content

Commit b3a197b

Browse files
committed
TEST: eslint errors
1 parent 0d0f998 commit b3a197b

File tree

4 files changed

+15
-5
lines changed

4 files changed

+15
-5
lines changed

lib/status-report.js

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/status-report.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/status-report.ts

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,16 @@ export enum JobStatus {
6868
ConfigErrorStatus = "JOB_STATUS_CONFIGURATION_ERROR",
6969
}
7070

71-
export interface StatusReportBase {
72-
/** Name of the action being executed. */
73-
action_name: ActionName;
71+
const unused = 0;
72+
const unused2 = 0;
73+
const unused3 = 0;
74+
75+
export interface StatusReportBase {
76+
/** Name of the action being executed.
77+
*
78+
*
79+
*/
80+
action_name: ActionName
7481
/** Version of the action being executed, as a commit oid. */
7582
action_oid: string;
7683
/** Version of the action being executed, as a ref. */

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
"alwaysStrict": true, /* Parse in strict mode and emit "use strict" for each source file. */
3434

3535
/* Additional Checks */
36-
"noUnusedLocals": true, /* Report errors on unused locals. */
36+
// "noUnusedLocals": true, /* Report errors on unused locals. */
3737
"noUnusedParameters": true, /* Report errors on unused parameters. */
3838
"noImplicitReturns": true, /* Report error when not all code paths in function return a value. */
3939
"noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */

0 commit comments

Comments
 (0)