mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 02:59:58 +08:00
9ff7f31dfe
* refactor(list): rewrite with hook * fix lint * fix lint * fix lint * fix Empty style dep Co-authored-by: afc163 <afc163@gmail.com>
27 lines
486 B
JavaScript
27 lines
486 B
JavaScript
module.exports = {
|
|
ignore: [
|
|
'**/~*/**',
|
|
'**/_*/**',
|
|
'**/icon/**',
|
|
'**/__tests__/**',
|
|
'**/style/**',
|
|
'**/locale/**',
|
|
'**/*-provider/**',
|
|
'**/*.json',
|
|
],
|
|
modulePattern: [
|
|
{
|
|
pattern: /ConfigContext.*renderEmpty/ms,
|
|
module: '../empty',
|
|
},
|
|
{
|
|
pattern: /ConfigConsumer.*renderEmpty/ms,
|
|
module: '../empty',
|
|
},
|
|
{
|
|
pattern: /config-provider\/context.*renderEmpty/ms,
|
|
module: '../empty',
|
|
},
|
|
],
|
|
};
|