Skip to content

Commit 7b0f821

Browse files
ci: apply automated fixes
1 parent 4506302 commit 7b0f821

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

packages/eslint-plugin-query/src/utils/ast-utils.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ export const ASTUtils = {
4242
properties: Array<TSESTree.ObjectLiteralElement>,
4343
key: string,
4444
): TSESTree.Property | undefined {
45-
return properties.find(
46-
(x): x is TSESTree.Property => ASTUtils.isPropertyWithIdentifierKey(x, key),
45+
return properties.find((x): x is TSESTree.Property =>
46+
ASTUtils.isPropertyWithIdentifierKey(x, key),
4747
)
4848
},
4949
getNestedIdentifiers(node: TSESTree.Node): Array<TSESTree.Identifier> {

0 commit comments

Comments
 (0)