版本

no-useless-computed-key

禁止在对象和类中使用不必要的计算属性键

🔧 可修复

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

使用字面量如以下内容时,无需使用计算属性:

var foo = {["a"]: "b"};

代码可以重写为

var foo = {"a": "b"};

规则详细信息

此规则禁止不必要地使用计算属性键。

此规则的错误代码示例

在游乐场中打开
/*eslint no-useless-computed-key: "error"*/

var a = { ['0']: 0 };
var a = { ['0+1,234']: 0 };
var a = { [0]: 0 };
var a = { ['x']: 0 };
var a = { ['x']() {} };

class Foo {
    ["foo"] = "bar";

    [0]() {}
    ['a']() {}
    get ['b']() {}
    set ['c'](value) {}

    static ["foo"] = "bar";

    static ['a']() {}
}

此规则的正确代码示例

在游乐场中打开
/*eslint no-useless-computed-key: "error"*/

var c = { 'a': 0 };
var c = { 0: 0 };
var a = { x() {} };
var c = { a: 0 };
var c = { '0+1,234': 0 };

class Foo {
    "foo" = "bar";

    0() {}
    'a'() {}
    get 'b'() {}
    set 'c'(value) {}

    static "foo" = "bar";

    static 'a'() {}
}

此规则的额外正确代码示例

在游乐场中打开
/*eslint no-useless-computed-key: "error"*/

var c = {
    "__proto__": foo, // defines object's prototype

    ["__proto__"]: bar // defines a property named "__proto__"
};

class Foo {
    ["constructor"]; // instance field named "constructor"

    "constructor"() {} // the constructor of this class

    ["constructor"]() {} // method named "constructor"

    static ["constructor"]; // static field named "constructor"

    static ["prototype"]; // runtime error, it would be a parsing error without `[]`
}

选项

此规则有一个对象选项

  • enforceForClassMembers 设置为 false 会为类成员禁用此规则(默认值 true)。

enforceForClassMembers

默认情况下,此规则还会检查类声明和类表达式,因为 enforceForClassMembers 的默认值为 true

enforceForClassMembers 设置为 false 时,此规则将允许类字段、类方法、类 getter 和类 setter 内出现不必要的计算键。

使用 { "enforceForClassMembers": false } 选项的此规则的错误代码示例

在游乐场中打开
/*eslint no-useless-computed-key: ["error", { "enforceForClassMembers": false }]*/

const obj = {
    ["foo"]: "bar",
    [42]: "baz",

    ['a']() {},
    get ['b']() {},
    set ['c'](value) {}
};

使用 { "enforceForClassMembers": false } 选项的此规则的正确代码示例

在游乐场中打开
/*eslint no-useless-computed-key: ["error", { "enforceForClassMembers": false }]*/

class SomeClass {
    ["foo"] = "bar";
    [42] = "baz";

    ['a']() {}
    get ['b']() {}
    set ['c'](value) {}

    static ["foo"] = "bar";
    static ['baz']() {}
}

何时不使用它

如果您不想收到有关不必要的计算属性键的通知,可以安全地禁用此规则。

版本

此规则在 ESLint v2.9.0 中引入。

资源

更改语言