gpt4 book ai didi

javascript - 如何配置 Eslint 以忽略 Vue Cli 3 项目中的特定错误

转载 作者:行者123 更新时间:2023-11-30 14:11:19 25 4
gpt4 key购买 nike

我在 Vue 项目中使用 Snap.svg,它是用 Vue cli 3 生成的。Snap 添加到 vue.config.js 如下:

module.exports = {
chainWebpack: config => {
config.module
.rule("i18n")
.resourceQuery(/blockType=i18n/)
.type("javascript/auto")
.use("i18n")
.loader("@kazupon/vue-i18n-loader")
.end();

config.module
.rule("snapsvg")
.test(require.resolve("snapsvg"))
.use("imports-loader?this=>window,fix=>module.exports=0")
.loader("imports-loader")
.end();

}
};

以及 main.js

const snap = require(`imports-loader?this=>window,fix=>module.exports=0!snapsvg/dist/snap.svg.js`);

我在没有本地导入的组件中使用 snap。

var s = Snap(this.paper["svg-wrap"]);

库正常工作,生成了 svg,但是我不断收到 Eslint 错误。

error: 'Snap' is not defined (no-undef) at src\components\subpageBanner.vue:246:21:

我想在所有组件中继续使用 Eslint,但将其配置为忽略此类错误。可能吗?

最佳答案

如果它是单个文件,那么您可以将以下行放在文件的顶部。

/*eslint no-undef: "warning"*/

关于javascript - 如何配置 Eslint 以忽略 Vue Cli 3 项目中的特定错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54411394/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com