Skip to content

Commit 3deef2d

Browse files
chore: remove parentheses
Co-authored-by: Jordan Harband <[email protected]>
1 parent 635c617 commit 3deef2d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/rules/destructuring-assignment.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ module.exports = {
6363

6464
function handleSFCUsage(node) {
6565
// props.aProp
66-
const isPropUsed = (node.object.name === 'props') && !isAssignmentLHS(node);
66+
const isPropUsed = node.object.name === 'props' && !isAssignmentLHS(node);
6767
if (isPropUsed && configuration === 'always') {
6868
context.report({
6969
node,

0 commit comments

Comments
 (0)