跳至主要内容

大括号风格

已弃用

格式化规则现在位于 eslint-stylistic 中。 @stylistic/ts/brace-style 是此规则的替代品。
有关更多信息,请参阅 弃用格式化规则

强制对块使用一致的大括号样式。

🔧

此规则报告的一些问题可以通过 --fix ESLint 命令行选项 自动修复。

此规则扩展了基本 eslint/brace-style 规则。它添加了对 enuminterfacenamespacemodule 声明的支持。

选项

参见 eslint/brace-style 选项

如何使用

.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"
}
};

在游乐场中尝试此规则 ↗

资源

来自 ESLint 核心 的 ❤️。