-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathreadConfig.ts
47 lines (39 loc) · 1.64 KB
/
readConfig.ts
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
import { Command } from "commander";
import { readFile } from "fs/promises";
import { problemFlags } from "./problemUtils.ts";
export async function readConfig(program: Command, alternate = ".attw.json") {
try {
const results = await readFile(alternate, "utf8");
if (!results) return;
const opts = JSON.parse(results);
for (let key in opts) {
if (key === "configPath")
program.error(`cannot set "configPath" within ${alternate}`, { code: "INVALID_OPTION" });
const value = opts[key];
if (key === "ignoreRules") {
if (!Array.isArray(value)) program.error(`error: config option 'ignoreRules' should be an array.`);
const invalid = value.find((rule) => !Object.values(problemFlags).includes(rule));
if (invalid)
program.error(
`error: config option 'ignoreRules' argument '${invalid}' is invalid. Allowed choices are ${Object.values(
problemFlags,
).join(", ")}.`,
);
}
if (Array.isArray(value)) {
const opt = program.getOptionValue(key);
if (Array.isArray(opt)) {
program.setOptionValueWithSource(key, [...opt, ...value], "config");
continue;
}
}
if (key !== "help" && key !== "version") program.setOptionValueWithSource(key, opts[key], "config");
}
} catch (error) {
if (!error || typeof error !== "object" || !("code" in error) || !("message" in error)) {
program.error("unknown error while reading config file", { code: "UNKNOWN" });
} else if (error.code !== "ENOENT") {
program.error(`error while reading config file:\n${error.message}`);
}
}
}