unicorn/text-encoding-identifier-case 样式
作用
此规则旨在强制统一文本编码标识符的大小写。
强制 UTF-8 编码使用 'utf8'
强制 ASCII 编码使用 'ascii'
。
示例
javascript
import fs from "node:fs/promises";
async function bad() {
await fs.readFile(file, "UTF-8");
await fs.readFile(file, "ASCII");
const string = buffer.toString("utf-8");
}
async function good() {
await fs.readFile(file, "utf8");
await fs.readFile(file, "ascii");
const string = buffer.toString("utf8");
}