版本

object-shorthand

要求或禁止对象字面量的方法和属性简写语法

🔧 可修复

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

ECMAScript 6 提供了一种简洁的形式来定义对象字面量方法和属性。此语法可以使定义复杂的对象字面量更加简洁。

以下是一些使用 ES5 语法的常见示例

// properties
var foo = {
    x: x,
    y: y,
    z: z,
};

// methods
var foo = {
    a: function() {},
    b: function() {}
};

现在以下是 ES6 等价物

// properties
var foo = {x, y, z};

// methods
var foo = {
    a() {},
    b() {}
};

规则详情

此规则强制使用简写语法。这适用于在对象字面量中定义的所有方法(包括生成器)以及在键名称与分配的变量名称匹配的情况下定义的任何属性。

以下每个属性都会发出警告

/*eslint object-shorthand: "error"*/

var foo = {
    w: function() {},
    x: function *() {},
    [y]: function() {},
    z: z
};

在这种情况下,预期语法应该是

/*eslint object-shorthand: "error"*/

var foo = {
    w() {},
    *x() {},
    [y]() {},
    z
};

此规则不会标记对象字面量内的箭头函数。以下将不会发出警告

/*eslint object-shorthand: "error"*/

var foo = {
    x: (y) => y
};

选项

该规则采用一个选项,指定何时应用它。它可以设置为以下值之一

  • "always"(默认)期望在任何可能的情况下使用简写。
  • "methods" 确保使用方法简写(也适用于生成器)。
  • "properties" 确保使用属性简写(在键和变量名称匹配的情况下)。
  • "never" 确保在任何对象字面量中都不使用属性或方法简写。
  • "consistent" 确保在对象字面量中使用所有简写或所有长格式。
  • "consistent-as-needed" 确保在对象字面量中使用所有简写或所有长格式,但在任何可能的情况下确保使用所有简写。

您可以在配置中这样设置选项

{
    "object-shorthand": ["error", "always"]
}

此外,该规则还接受可选的对象配置

  • "avoidQuotes": true 表示在对象键为字符串字面量时首选长格式语法(默认:false)。请注意,只有当字符串选项设置为 "always""methods""properties" 时,才能启用此选项。
  • "ignoreConstructors": true 可用于防止规则针对构造函数报告错误。(默认情况下,该规则对构造函数的处理方式与其他函数相同。)请注意,只有当字符串选项设置为 "always""methods" 时,才能启用此选项。
  • "methodsIgnorePattern"string)对于名称与该正则表达式模式匹配的方法,将不会强制执行方法简写。请注意,只有当字符串选项设置为 "always""methods" 时,才能使用此选项。
  • "avoidExplicitReturnArrows": true 表示方法优先于函数属性的显式返回箭头函数。(默认情况下,该规则允许使用其中任何一个。)请注意,只有当字符串选项设置为 "always""methods" 时,才能启用此选项。

avoidQuotes

{
    "object-shorthand": ["error", "always", { "avoidQuotes": true }]
}

使用 "always", { "avoidQuotes": true } 选项时,此规则的错误代码示例

在 Playground 中打开
/*eslint object-shorthand: ["error", "always", { "avoidQuotes": true }]*/

var foo = {
    "bar-baz"() {}
};

使用 "always", { "avoidQuotes": true } 选项时,此规则的正确代码示例

在 Playground 中打开
/*eslint object-shorthand: ["error", "always", { "avoidQuotes": true }]*/

var foo = {
    "bar-baz": function() {},
    "qux": qux
};

ignoreConstructors

{
    "object-shorthand": ["error", "always", { "ignoreConstructors": true }]
}

使用 "always", { "ignoreConstructors": true } 选项时,此规则的正确代码示例

在 Playground 中打开
/*eslint object-shorthand: ["error", "always", { "ignoreConstructors": true }]*/

var foo = {
    ConstructorFunction: function() {}
};

methodsIgnorePattern

使用 "always", { "methodsIgnorePattern": "^bar$" } 选项时,此规则的正确代码示例

在 Playground 中打开
/*eslint object-shorthand: ["error", "always", { "methodsIgnorePattern": "^bar$" }]*/

var foo = {
    bar: function() {}
};

avoidExplicitReturnArrows

{
    "object-shorthand": ["error", "always", { "avoidExplicitReturnArrows": true }]
}

使用 "always", { "avoidExplicitReturnArrows": true } 选项时,此规则的错误代码示例

在 Playground 中打开
/*eslint object-shorthand: ["error", "always", { "avoidExplicitReturnArrows": true }]*/

var foo = {
  foo: (bar, baz) => {
    return bar + baz;
  },

  qux: (foobar) => {
    return foobar * 2;
  }
};

使用 "always", { "avoidExplicitReturnArrows": true } 选项时,此规则的正确代码示例

在 Playground 中打开
/*eslint object-shorthand: ["error", "always", { "avoidExplicitReturnArrows": true }]*/

var foo = {
  foo(bar, baz) {
    return bar + baz;
  },

  qux: foobar => foobar * 2
};

使用 "consistent" 选项时,此规则的错误代码示例

在 Playground 中打开
/*eslint object-shorthand: [2, "consistent"]*/

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

使用 "consistent" 选项时,此规则的正确代码示例

在 Playground 中打开
/*eslint object-shorthand: [2, "consistent"]*/

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

var bar = {
    a,
    b,
};

使用 "consistent-as-needed" 选项时的错误代码示例,它与 "consistent" 非常相似

在 Playground 中打开
/*eslint object-shorthand: [2, "consistent-as-needed"]*/

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

何时不使用它

任何尚未处于 ES6 环境中的人都不希望应用此规则。其他人可能会发现简写语法的简洁性难以阅读,并且可能不希望使用此规则来鼓励它。

版本

此规则在 ESLint v0.20.0 中引入。

进一步阅读

资源

更改语言