Skip to content

Commit

Permalink
style: Add indention tab
Browse files Browse the repository at this point in the history
  • Loading branch information
flovogt committed Dec 10, 2024
1 parent 1cdeb8c commit 554ac51
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/linter/linter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ export function resolveReader({
// When we work with files paths we actually need to limit the result to those
// matches, instead of allowing all except XYZ
!isFileIncluded(resPath, minimatchPatterns, patternsMatch) :
isFileIncluded(resPath, minimatchPatterns, patternsMatch);
isFileIncluded(resPath, minimatchPatterns, patternsMatch);
},
});
}
Expand Down
2 changes: 1 addition & 1 deletion src/utils/ConfigManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export default class ConfigManager {
// If it's an relative path, transform to POSIX format
const configFilePath = path.isAbsolute(this.#configFile) ?
this.#configFile :
this.#resolveModulePaths(this.#configFile);
this.#resolveModulePaths(this.#configFile);

({default: config} = await import(configFilePath) as {default: UI5LintConfigType});
} else {
Expand Down

0 comments on commit 554ac51

Please sign in to comment.