indent
已弃用
格式化规则现在位于 eslint-stylistic 中。 @stylistic/ts/indent 是此规则的替代品。
有关更多信息,请参阅 弃用格式化规则。
强制一致的缩进。
🔧
此规则报告的一些问题可以通过 --fix
ESLint 命令行选项 自动修复。
警告
警告
在使用此规则之前,请阅读 问题 #1824:indent 规则的问题!
此规则扩展了基础 eslint/indent
规则。它添加了对 TypeScript 节点的支持。
选项
请参阅 eslint/indent
选项。
如何使用
.eslintrc.cjs
module.exports = {
"rules": {
// Note: you must disable the base rule as it can report incorrect errors
"indent": "off",
"@typescript-eslint/indent": "error"
}
};
在游乐场中尝试此规则 ↗