mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2025-12-17 06:20:12 +01:00
Suppress (hidden) expected Webpack warnings due to dynamic require and bundle size.
This commit is contained in:
parent
8b26129d55
commit
65eeb4c8d9
1 changed files with 12 additions and 1 deletions
|
|
@ -56,7 +56,18 @@ function config(options) {
|
||||||
"path": false,
|
"path": false,
|
||||||
"module": require.resolve("./module-stub.cjs")
|
"module": require.resolve("./module-stub.cjs")
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
"ignoreWarnings": [
|
||||||
|
{
|
||||||
|
"message": /(asset|entrypoint) size limit/
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"message": /dependencies cannot be statically extracted/
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"message": /lazy load some parts of your application/
|
||||||
|
}
|
||||||
|
]
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue