大括号风格
已弃用
格式化规则现在位于 eslint-stylistic 中。 @stylistic/ts/brace-style 是此规则的替代品。
有关更多信息,请参阅 弃用格式化规则。
强制对块使用一致的大括号样式。
🔧
此规则报告的一些问题可以通过 --fix
ESLint 命令行选项 自动修复。
此规则扩展了基本 eslint/brace-style
规则。它添加了对 enum
、interface
、namespace
和 module
声明的支持。
选项
如何使用
.eslintrc.cjs
module.exports = {
"rules": {
// Note: you must disable the base rule as it can report incorrect errors
"brace-style": "off",
"@typescript-eslint/brace-style": "error"
}
};
在游乐场中尝试此规则 ↗