vite eslint scss报错 error Parsing error: Private ?

发布于 2022-09-13 01:07:39 字数 1097 浏览 37 评论 0

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

假情假意假温柔 2022-09-20 01:07:39

value加引号不知道行不行

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文