File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 5858 "microsoft-typescript/boolean-trivia": "error",
5959 "microsoft-typescript/no-in-operator": "off",
6060 "microsoft-typescript/debug-assert": "error",
61- "microsoft-typescript/no-keywords": "off ",
61+ "microsoft-typescript/no-keywords": "error ",
6262
6363 "arrow-body-style": "off",
6464 "arrow-parens": "off",
131131 "@typescript-eslint/prefer-function-type": "off",
132132 "@typescript-eslint/unified-signatures": "off",
133133
134+ "microsoft-typescript/no-keywords": "off",
135+
134136 "no-var": "off"
135137 }
136138 }]
Original file line number Diff line number Diff line change 33import Octokit = require( "@octokit/rest" ) ;
44import { runSequence } from "./run-sequence" ;
55
6- function padNum ( number : number ) {
7- const str = "" + number ;
6+ function padNum ( num : number ) {
7+ const str = "" + num ;
88 return str . length >= 2 ? str : "0" + str ;
99}
1010
You can’t perform that action at this time.
0 commit comments