-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathvalidate-submodules.ts
More file actions
52 lines (42 loc) · 1.45 KB
/
validate-submodules.ts
File metadata and controls
52 lines (42 loc) · 1.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
// Copyright 2023-present Eser Ozvataf and other contributors. All rights reserved. Apache-2.0 license.
/**
* Submodule checker — detects new git submodules.
*
* @module
*/
import * as standards from "@eserstack/standards";
import { runtime } from "@eserstack/standards/cross-runtime";
import { createFileTool, type FileTool, withGoValidator } from "./file-tool.ts";
export const tool: FileTool = withGoValidator(createFileTool({
name: "validate-submodules",
description: "Detect new git submodules",
canFix: false,
stacks: [],
defaults: {},
async checkAll(_files, options) {
const gitmodulesPath = runtime.path.join(options.root, ".gitmodules");
const exists = await runtime.fs.exists(gitmodulesPath);
if (!exists) {
return [];
}
const content = await runtime.fs.readTextFile(gitmodulesPath);
const submoduleCount = (content.match(/\[submodule\s/g) ?? []).length;
if (submoduleCount > 0) {
return [{
path: gitmodulesPath,
message:
`found ${submoduleCount} submodule(s) — submodules are not allowed`,
}];
}
return [];
},
}), "submodules");
export const run: FileTool["run"] = tool.run;
export const validator: FileTool["validator"] = tool.validator;
export const main: FileTool["main"] = tool.main;
if (import.meta.main) {
const { runCliMain } = await import("./cli-support.ts");
runCliMain(
await main(standards.crossRuntime.runtime.process.args as string[]),
);
}