●Reactでjsxを保存する時に、formatが効いてしまい1行になってしまう
●Prettierを導入したが効かない
【やったこと】
●VSCodeのPrettier拡張機能をインストールし、vsCodeのFormat On Saveにチェックを入れる
参考にしたリンク↓
リンク内容
リンク内容
●ローカルにPrettierをインストールし.prettierrrcファイルを作成、以下のコードを記載してyarn formatを実行
{ "printWidth": 120, "useTabs": false, "semi": true, "singleQuote": true, "trailingComma": "es5", "bracketSpacing": true, "jsxBracketSameLine": false }
【settings.jsonに追加したもの】
"editor.formatOnSave": false, "prettier.requireConfig": true, "[json]": { "editor.defaultFormatter": "esbenp.prettier-vscode" }, "javascript.format.enable": true, "eslint.autoFixOnSave": true
【package.jsonに追加したもの】
"scripts": { "start": "react-scripts start", "build": "react-scripts build", "test": "react-scripts test", "eject": "react-scripts eject", "format": "prettier --write ./src/**/*.js" },
●自分なりに怪しそうな拡張機能があるか調べる
Beautify、htmltagwrap、vscode-styled-componentsなど
アンインストールや無効にしても変化なし
お時間のある方ご教授お願いします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/07/12 14:33
2020/07/12 16:10