# no-label-var

禁止与变量共享名称的标签

# 规则详情

此规则旨在通过禁止创建与范围内的变量共享名称的标签的不良做法来创建更清晰的代码。

此规则的错误代码示例:

/*eslint no-label-var: "error"*/

var x = foo;
function bar() {
x:
  for (;;) {
    break x;
  }
}

此规则的正确代码示例:

/*eslint no-label-var: "error"*/

// The variable that has the same name as the label is not in scope.

function foo() {
  var q = t;
}

function bar() {
q:
  for(;;) {
    break q;
  }
}

# 何时不使用

如果您不想收到有关标签使用情况的通知,那么禁用此规则是安全的。

Last Updated: 5/13/2023, 8:55:38 PM