UNPKG
stryker-plugin-react-hooks-checker
Version:
latest (0.2.0)
0.2.0
0.1.1
0.1.0
A React Hooks checker/ignorer plugin for StrykerJS
stryker-plugin-react-hooks-checker
/
src
/
index.ts
8 lines
(5 loc)
•
226 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
import
{
PluginKind
, declareClassPlugin }
from
"@stryker-mutator/api/plugin"
import
{
ReactIgnorer
}
from
"./ReactIgnorer.js"
export
const
strykerPlugins = [
declareClassPlugin
(
PluginKind
.
Ignore
,
"react"
,
ReactIgnorer
), ]