引号
已弃用
格式化规则现在位于 eslint-stylistic 中。 @stylistic/ts/quotes 是此规则的替代品。
有关更多信息,请参阅 弃用格式化规则。
强制一致地使用反引号、双引号或单引号。
🔧
此规则报告的一些问题可以通过 --fix
ESLint 命令行选项 自动修复。
此规则扩展了基本 eslint/quotes
规则。它添加了对 TypeScript 特性的支持,这些特性允许使用带引号的名称,但不允许使用反引号引用的名称。
选项
请参阅 eslint/quotes
选项。
如何使用
.eslintrc.cjs
module.exports = {
"rules": {
// Note: you must disable the base rule as it can report incorrect errors
"quotes": "off",
"@typescript-eslint/quotes": "error"
}
};
在游乐场中尝试此规则 ↗