vscode prettier 不按eslint 配置进行整理

发布于 2022-09-12 03:30:04 字数 1010 浏览 20 评论 0

RT 正常的 indent 可以但是比如ref 的位置 就不行了

{
    "files.exclude": {
        "**/.git": true,
        "**/.svn": true,
        "**/.hg": true,
        "**/CVS": true,
        "**/.DS_Store": true,
        "**/.history": true,
        "**/ioscan-frontend": true,
        "**/node_modules": true,
        "**/pivot": true,
        "**/public": true,
        "**/dist": true,
        "**/.idea": true
    },
    "workbench.colorTheme": "Visual Studio Light",
    "editor.formatOnSave": true,
    "editor.codeActionsOnSave": {
        // For ESLint
        "source.fixAll.eslint": true,
        // For TSLint
        "source.fixAll.tslint": true,
        // For Stylelint
        "source.fixAll.stylelint": true
    },
    "prettier.useEditorConfig": false,
    "prettier.eslintIntegration": true,
    //配置 ESLint 检查的文件类型
    "eslint.validate": ["javascript", "javascriptreact", "vue", "html"],
    "eslint.options": {
        "configFile": "./`.eslintrc`.js"
    }
}

这是我的settings 求解

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

青衫负雪 2022-09-19 03:30:04

sf 解决办法

过程中出现了会整理两次的问题 最后的配置文件

{
  "workbench.colorTheme": "Visual Studio Light",
  "editor.codeActionsOnSave": {
    "source.fixAll.eslint": true,
    "source.fixAll.tslint": true,
    "source.fixAll.stylelint": true
  },
  //配置 ESLint 检查的文件类型
  "eslint.options": {
    "configFile": ".eslintrc.js"
  }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文