Skip to content

Commit 6da2b4a

Browse files
renovate[bot]Josh Goldberg
andauthored
chore(deps): update typescript-eslint monorepo to v5.30.7 (#1510)
* chore(deps): update typescript-eslint monorepo to v5.30.7 * Merge branch 'main' Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Josh Goldberg <[email protected]>
1 parent 7978dc4 commit 6da2b4a

File tree

3 files changed

+83
-83
lines changed

3 files changed

+83
-83
lines changed

package-lock.json

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

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@
3030
"@types/lodash": "4.14.182",
3131
"@types/minimatch": "3.0.5",
3232
"@types/node": "17.0.18",
33-
"@typescript-eslint/eslint-plugin": "5.27.1",
34-
"@typescript-eslint/parser": "5.27.1",
33+
"@typescript-eslint/eslint-plugin": "5.30.7",
34+
"@typescript-eslint/parser": "5.30.7",
3535
"ansi-regex": "6.0.1",
3636
"cross-env": "7.0.3",
3737
"eslint": "8.20.0",

src/converters/lintConfigs/summarization/normalizeESLintRules.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import { ESLintRuleOptions, RawESLintRuleSeverity } from "../rules/types";
99
* Normalizes raw ESLint rule configurations into our standardized output format.
1010
*/
1111
export const normalizeESLintRules = (userRules: ESLintConfigurationRules | undefined) => {
12-
const output: Map<string, ESLintRuleOptions> = new Map();
12+
const output = new Map<string, ESLintRuleOptions>();
1313

1414
for (const [ruleName, rawRuleValue] of Object.entries(userRules ?? {})) {
1515
const [rawRuleSeverity, ruleArguments] = parseRawRuleValue(rawRuleValue);

0 commit comments

Comments
 (0)