Skip to content

Commit

Permalink
Renaming
Browse files Browse the repository at this point in the history
  • Loading branch information
ehmicky committed Mar 20, 2022
1 parent a599299 commit f932dc9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/config/normalize/lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,13 @@ export const normalizeConfigProps = async function (
const rulesA = normalizeRules(rules)

try {
const { config: configB, warnings } = await pReduce(
const { config: configA, warnings } = await pReduce(
rulesA,
(memo, rule) =>
applyRuleDeep(memo, { rule, context, cwd, prefix, parent }),
{ config, moves: [], warnings: [] },
)
const value = cleanObject(configB)
const value = cleanObject(configA)
logWarnings(warnings, soft)
return { value, warnings }
} catch (error) {
Expand Down

0 comments on commit f932dc9

Please sign in to comment.