搜尋

首頁  >  問答  >  主體

為什麼我總是收到“刪除`CR`”?

我正在將 VS Code 與 Prettier 1.7.2 和 ESLint 1.7.0 結合使用。 在每個換行之後我得到:

[eslint] Delete `CR` [prettier/prettier]

這是 .eslintrc.json

{
  "extends": ["airbnb", "plugin:prettier/recommended"],
  "env": {
    "jest": true,
    "browser": true
  },
  "rules": {
    "import/no-extraneous-dependencies": "off",
    "import/prefer-default-export": "off",
    "no-confusing-arrow": "off",
    "linebreak-style": "off",
    "arrow-parens": ["error", "as-needed"],
    "comma-dangle": [
      "error",
      {
        "arrays": "always-multiline",
        "objects": "always-multiline",
        "imports": "always-multiline",
        "exports": "always-multiline",
        "functions": "ignore"
      }
    ],
    "no-plusplus": "off"
  },
  "parser": "babel-eslint",
  "plugins": ["react"],
  "globals": {
    "browser": true,
    "$": true,
    "before": true,
    "document": true
  }
}

.prettierrc 檔案:

{
  "printWidth": 80,
  "tabWidth": 2,
  "semi": true,
  "singleQuote": true,
  "trailingComma": "es5",
  "bracketSpacing": true,
  "jsxBracketSameLine": false,
}

如何消除這個錯誤?

P粉850680329P粉850680329456 天前534

全部回覆(1)我來回復

  • P粉787934476

    P粉7879344762023-10-12 10:04:13

    嘗試在 .prettierrc(或 .prettierrc.json)檔案(物件內部)中設定 "endOfLine":"auto"

    #或設定

    "prettier/prettier": [
      "error",
      {
        "endOfLine": "auto"
      }
    ]

    eslintrc 檔案的 rules 物件內。

    如果您使用的是 Windows 機器,endOfLine 可以根據您的 git 配置為「crlf」。

    回覆
    0
  • 取消回覆