Skip to content

Commit

Permalink
chore(deps): update typescript-eslint monorepo to v5.30.7 (#1510)
Browse files Browse the repository at this point in the history
* 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]>
  • Loading branch information
renovate[bot] and Josh Goldberg authored Jul 22, 2022
1 parent 7978dc4 commit 6da2b4a
Show file tree
Hide file tree
Showing 3 changed files with 83 additions and 83 deletions.
160 changes: 80 additions & 80 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@
"@types/lodash": "4.14.182",
"@types/minimatch": "3.0.5",
"@types/node": "17.0.18",
"@typescript-eslint/eslint-plugin": "5.27.1",
"@typescript-eslint/parser": "5.27.1",
"@typescript-eslint/eslint-plugin": "5.30.7",
"@typescript-eslint/parser": "5.30.7",
"ansi-regex": "6.0.1",
"cross-env": "7.0.3",
"eslint": "8.20.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { ESLintRuleOptions, RawESLintRuleSeverity } from "../rules/types";
* Normalizes raw ESLint rule configurations into our standardized output format.
*/
export const normalizeESLintRules = (userRules: ESLintConfigurationRules | undefined) => {
const output: Map<string, ESLintRuleOptions> = new Map();
const output = new Map<string, ESLintRuleOptions>();

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

0 comments on commit 6da2b4a

Please sign in to comment.