gpt4 book ai didi

vue.js - 如何在 Vue 模板文件中配置 eslint prettier 禁用样式?

转载 作者:行者123 更新时间:2023-12-04 15:35:22 29 4
gpt4 key购买 nike

我想忽略 .vue 文件中的所有“样式”标签。
我在 eslint 中使用了 @vue/prettier。

如何仅禁用 Vue 模板文件中的“样式”标签?

.eslintrc.js

module.exports = {
root: true,
env: {
browser: true,
jquery: true,
node: true
},
plugins: [
"vue"
],
extends: ["plugin:vue/essential", "@vue/prettier"],
rules: {
"prettier/prettier": "error",
"no-console": process.env.NODE_ENV === "production" ? "error" : "off",
"no-debugger": process.env.NODE_ENV === "production" ? "error" : "off",
"new-cap": [
2,
{
newIsCap: false,
capIsNew: false
}
],
"no-useless-escape": 0
},
parserOptions: {
parser: "babel-eslint",
sourceType: "module"
},
};

最佳答案

更漂亮和 vue 只是不要混合。解决这个问题是一项艰巨的任务。我使用 VSCode,它会破坏我的工作流程。我对 ctlf 功能有一个问题,该功能在确定哪些行需要它时不加区分。
尝试使用此处的 Jon Gallants 设置 a link !
它完全对我有用!

关于vue.js - 如何在 Vue 模板文件中配置 eslint prettier 禁用样式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59960849/

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