diff --git a/packages/eslint-plugin-sui/src/rules/value-attribute-VO.js b/packages/eslint-plugin-sui/src/rules/value-attribute-VO.js index d8f57f3c8..4beec0ffa 100644 --- a/packages/eslint-plugin-sui/src/rules/value-attribute-VO.js +++ b/packages/eslint-plugin-sui/src/rules/value-attribute-VO.js @@ -98,9 +98,8 @@ module.exports = { ` classMethods.forEach(method => { - const existNativeGetterWithAttributeKey = - method?.key?.name === valueAttribute?.key?.name && - method?.kind === 'get' + const existNativeGetterWithAttributeKey = + method?.key?.name === valueAttribute?.key?.name && method?.kind === 'get' const existCustomGetterWithAttributeKey = method?.key?.name === customGetterName if (existNativeGetterWithAttributeKey || existCustomGetterWithAttributeKey) {