-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathvalidate-bom.ts
More file actions
53 lines (42 loc) · 1.29 KB
/
validate-bom.ts
File metadata and controls
53 lines (42 loc) · 1.29 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
// Copyright 2023-present Eser Ozvataf and other contributors. All rights reserved. Apache-2.0 license.
/**
* BOM fixer — removes UTF-8 byte order markers.
*
* @module
*/
import * as standards from "@eserstack/standards";
import { createFileTool, type FileTool, withGoValidator } from "./file-tool.ts";
/** UTF-8 BOM: 0xEF 0xBB 0xBF */
const BOM = "\uFEFF";
export const tool: FileTool = withGoValidator(createFileTool({
name: "validate-bom",
description: "Remove UTF-8 byte order markers",
canFix: true,
stacks: [],
defaults: {},
checkFile(file, content) {
if (content === undefined) {
return [];
}
if (content.startsWith(BOM)) {
return [{ path: file.path, message: "file has UTF-8 BOM" }];
}
return [];
},
fixFile(file, content) {
if (!content.startsWith(BOM)) {
return undefined;
}
const fixed = content.slice(1);
return { path: file.path, oldContent: content, newContent: fixed };
},
}), "bom");
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[]),
);
}