14 lines
231 B
JavaScript
14 lines
231 B
JavaScript
|
|
module.exports = {
|
||
|
|
ignores: [
|
||
|
|
"build/",
|
||
|
|
"bin/",
|
||
|
|
"dist/",
|
||
|
|
"tests/",
|
||
|
|
"node_modules/",
|
||
|
|
"babel.config.js",
|
||
|
|
"postcss.config.js",
|
||
|
|
"src/assets/iconfont/",
|
||
|
|
// 可以添加更多的忽略规则
|
||
|
|
],
|
||
|
|
};
|