mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-23 18:50:06 +08:00
863f61d908
Co-authored-by: afc163 <afc163@gmail.com>
27 lines
483 B
JavaScript
27 lines
483 B
JavaScript
module.exports = {
|
|
ignore: [
|
|
'**/~*/**',
|
|
'**/_*/**',
|
|
'**/icon/**',
|
|
'**/__tests__/**',
|
|
'**/style/**',
|
|
'**/locale/**',
|
|
'**/*-provider/**',
|
|
'**/*.json',
|
|
],
|
|
modulePattern: [
|
|
{
|
|
pattern: /ConfigContext.*renderEmpty/s,
|
|
module: '../empty',
|
|
},
|
|
{
|
|
pattern: /ConfigConsumer.*renderEmpty/s,
|
|
module: '../empty',
|
|
},
|
|
{
|
|
pattern: /config-provider\/context.*renderEmpty/s,
|
|
module: '../empty',
|
|
},
|
|
],
|
|
};
|