Skip to content

Commit f715b30

Browse files
chore: ignore coverage from index and types files (#4257)
1 parent 3993a1f commit f715b30

File tree

8 files changed

+16
-0
lines changed

8 files changed

+16
-0
lines changed

packages/query-core/src/index.ts

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/* istanbul ignore file */
2+
13
export { CancelledError } from './retryer'
24
export { QueryCache } from './queryCache'
35
export { QueryClient } from './queryClient'

packages/query-core/src/types.ts

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/* istanbul ignore file */
2+
13
import type { MutationState } from './mutation'
24
import type { QueryBehavior, Query } from './query'
35
import type { RetryValue, RetryDelayValue } from './retryer'
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
1+
/* istanbul ignore file */
2+
13
export * from './persist'
24
export * from './retryStrategies'

packages/react-query/src/index.ts

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/* istanbul ignore file */
2+
13
// Side effects
24
import './setBatchUpdatesFn'
35

packages/react-query/src/types.ts

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/* istanbul ignore file */
2+
13
import type * as React from 'react'
24
import type {
35
InfiniteQueryObserverOptions,

packages/solid-query/src/index.ts

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/* istanbul ignore file */
2+
13
// Re-export core
24
export * from '@tanstack/query-core'
35

packages/solid-query/src/types.ts

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/* istanbul ignore file */
2+
13
import type { Context } from 'solid-js'
24
import type {
35
QueryClient,

packages/vue-query/src/types.ts

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/* istanbul ignore file */
2+
13
import type {
24
QueryKey,
35
QueryObserverOptions,

0 commit comments

Comments
 (0)