no-const-assign
禁止重新分配 const
变量
在 配置文件 中使用来自 @eslint/js
的 recommended
配置可以启用此规则
我们不能修改使用 const
关键字声明的变量。它将引发运行时错误。
¥We cannot modify variables that are declared using const
keyword.
It will raise a runtime error.
在非 ES2015 环境下,可能只是忽略。
¥Under non ES2015 environment, it might be ignored merely.
规则详情
¥Rule Details
此规则旨在标记使用 const
关键字声明的修改变量。
¥This rule is aimed to flag modifying variables that are declared using const
keyword.
此规则的错误代码示例:
¥Examples of incorrect code for this rule:
/*eslint no-const-assign: "error"*/
const a = 0;
a = 1;
/*eslint no-const-assign: "error"*/
const a = 0;
a += 1;
/*eslint no-const-assign: "error"*/
const a = 0;
++a;
此规则的正确代码示例:
¥Examples of correct code for this rule:
/*eslint no-const-assign: "error"*/
const a = 0;
console.log(a);
/*eslint no-const-assign: "error"*/
for (const a in [1, 2, 3]) { // `a` is re-defined (not modified) on each loop step.
console.log(a);
}
/*eslint no-const-assign: "error"*/
for (const a of [1, 2, 3]) { // `a` is re-defined (not modified) on each loop step.
console.log(a);
}
何时不使用
¥When Not To Use It
如果你不想收到有关修改使用 const
关键字声明的变量的通知,你可以安全地禁用此规则。
¥If you don’t want to be notified about modifying variables that are declared using const
keyword, you can safely disable this rule.
由 TypeScript 处理
使用 TypeScript 时禁用此规则是安全的,因为 TypeScript 的编译器强制执行此检查。
版本
此规则是在 ESLint v1.0.0-rc-1 中引入。