@ui5/linter
Version:
A static code analysis tool for UI5
9 lines • 452 B
JavaScript
import DotLibraryLinter from "./DotLibraryLinter.js";
export default async function lintDotLibrary({ context, filePathsWorkspace }) {
const dotLibraryResources = await filePathsWorkspace.byGlob("**/.library");
await Promise.all(dotLibraryResources.map(async (resource) => {
const linter = new DotLibraryLinter(resource.getPath(), resource.getStream(), context);
await linter.lint();
}));
}
//# sourceMappingURL=linter.js.map