eslintを走らせる際にprettierのコード整形も適用されるように設定しているのですが、Reactで三項演算子を使った場合に下記のエラーが発生し、コードを保存しても自動で整形されず、クイックフィックスでも対応できない状況です。(このエラー以外は正しく機能しています)
endOfLine: "auto"
が解決策として挙がっていたので試してみたのですが変わりませんでした。
解決する方法をご存知の方いらっしゃいましたらご教授いただけると幸いです。
.eslintrc.js
js
1module.exports = { 2 env: { 3 browser: true, 4 es2020: true, 5 node: true, 6 }, 7 extends: ['eslint:recommended', 'plugin:react/recommended', 'prettier'], 8 parserOptions: { 9 ecmaFeatures: { 10 jsx: true, 11 }, 12 ecmaVersion: 11, 13 sourceType: 'module', 14 }, 15 plugins: ['react', 'prettier', 'react-hooks'], 16 rules: { 17 'prettier/prettier': 'error', 18 'react/prop-types': 'off', 19 'react/react-in-jsx-scope': 'off', 20 'no-unused-vars': 'off', 21 'react-hooks/rules-of-hooks': 'error', 22 'react-hooks/exhaustive-deps': 'warn', 23 }, 24 settings: { 25 react: { 26 version: 'detect', 27 }, 28 }, 29}; 30
.prettierrc.js
js
1module.exports = { 2 printWidth: 80, 3 tabWidth: 2, 4 singleQuote: true, 5 semi: true, 6 trailingComma: "es5", 7 bracketSpacing: true, 8 arrowParens: "avoid", 9 endOfLine: "auto" 10}; 11
package.json
json
1{ 2 "name": "nextjs-eslint-prettier-template", 3 "version": "0.1.0", 4 "private": true, 5 "scripts": { 6 "dev": "next src/", 7 "build": "next build src/", 8 "start": "next start src/", 9 "lint": "eslint . --ext .js,.jsx" 10 }, 11 "dependencies": { 12 (略) 13 }, 14 "devDependencies": { 15 "eslint": "^7.11.0", 16 "eslint-config-prettier": "^6.14.0", 17 "eslint-plugin-prettier": "^3.1.4", 18 "eslint-plugin-react": "^7.21.5", 19 "eslint-plugin-react-hooks": "^4.2.0", 20 "prettier": "^2.1.2" 21 } 22} 23
提供いただいた情報では問題を再現できませんでした
画像:https://git.io/JkGy0