1
0
mirror of https://github.com/sasjs/lint.git synced 2026-01-13 07:10:05 +00:00

chore: quick fix

This commit is contained in:
2022-12-29 00:47:54 +05:00
parent c0fdfc6ac9
commit 5c44ec400d
3 changed files with 14 additions and 4 deletions

View File

@@ -30,7 +30,7 @@ export const processLine = (config: LintConfig, line: string): string => {
config.lineLintRules
.filter((r) => !!r.fix)
.forEach((rule) => {
processedLine = rule.fix!(line, config)
processedLine = rule.fix!(processedLine, config)
})
return processedLine