-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathvalidate-json.ts
More file actions
57 lines (49 loc) · 1.48 KB
/
validate-json.ts
File metadata and controls
57 lines (49 loc) · 1.48 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
53
54
55
56
57
// Copyright 2023-present Eser Ozvataf and other contributors. All rights reserved. Apache-2.0 license.
/**
* JSON syntax checker — validates .json and .jsonc files.
*
* @module
*/
import * as jsonc from "@std/jsonc";
import * as standards from "@eserstack/standards";
import { createFileTool, type FileTool } from "./file-tool.ts";
export const tool: FileTool = createFileTool({
name: "validate-json",
description: "Validate JSON syntax",
canFix: false,
stacks: [],
defaults: {},
extensions: ["json", "jsonc"],
checkFile(file, content, options) {
if (content === undefined) {
return [];
}
// Check excludes from .eser/manifest.yml config
const excludes = (options["exclude"] as string[] | undefined) ?? [];
if (excludes.some((pattern) => file.path.includes(pattern))) {
return [];
}
try {
if (file.name.endsWith(".jsonc")) {
jsonc.parse(content);
} else {
JSON.parse(content);
}
return [];
} catch (error) {
const message = error instanceof SyntaxError
? error.message
: "invalid JSON";
return [{ path: file.path, message }];
}
},
});
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[]),
);
}