We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4506302 commit 7b0f821Copy full SHA for 7b0f821
1 file changed
packages/eslint-plugin-query/src/utils/ast-utils.ts
@@ -42,8 +42,8 @@ export const ASTUtils = {
42
properties: Array<TSESTree.ObjectLiteralElement>,
43
key: string,
44
): TSESTree.Property | undefined {
45
- return properties.find(
46
- (x): x is TSESTree.Property => ASTUtils.isPropertyWithIdentifierKey(x, key),
+ return properties.find((x): x is TSESTree.Property =>
+ ASTUtils.isPropertyWithIdentifierKey(x, key),
47
)
48
},
49
getNestedIdentifiers(node: TSESTree.Node): Array<TSESTree.Identifier> {
0 commit comments