vite eslint scss报错 error Parsing error: Private ?
error Parsing error: Private names are only allowed in property accesses (`obj.#app`) or in `in` expressions (`#app in obj`).
1 | /*eslint-disable*/
> 2 | #app {
| ^
3 | font-family: Avenir, Helvetica, Arial, sans-serif;
4 | -webkit-font-smoothing: antialiased;
5 | -moz-osx-font-smoothing: grayscale;
✖ 1 problem (1 error, 0 warnings)
.eslintrc.js
const isProduction = process.env.NODE_ENV === "production";
module.exports = {
root: true,
env: {
node: true,
},
extends: [
"plugin:vue/essential",
"eslint:recommended",
"plugin:vue/recommended",
],
//parser: "vue-eslint-parser",
parserOptions: {
parser: "babel-eslint",
},
rules: {
//"no-console": isProduction ? "warn" : "off",
//"no-debugger": isProduction ? "warn" : "off",
//"no-mixed-spaces-and-tabs": [2, false], //禁止混用tab和空格
"no-var": 0, //禁用var,用let和const代替
//indent: [2, 4],
//indent: [2, "tab"], //缩进风格
indent: "off"
},
};
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
value加引号不知道行不行