なぜ「[eslint] Delete `CR` [prettier/prettier]」が繰り返し表示されるのでしょうか? 質問する

なぜ「[eslint] Delete `CR` [prettier/prettier]」が繰り返し表示されるのでしょうか? 質問する

私は 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,
}

このエラーを解消するにはどうすればいいでしょうか?

ベストアンサー1

.prettierrc (または .prettierrc.json) ファイル (オブジェクト内)"endOfLine":"auto"で設定してみてください。

または、eslintrcrulesファイルのオブジェクト内にこれを設定します。

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

Windows マシンを使用している場合は、endOfLinegit 構成に基づいて「crlf」にすることができます。

おすすめ記事