About 19,100,000 results
Open links in new tab
  1. Why do I keep getting "[eslint] Delete `CR` [prettier/prettier]"?

    Solution git config --global core.autocrlf false After global configuration, you need to pull the code again. Root cause of the problem: The culprit is git, a configuration property of core.autocrlf …

  2. How to make Prettier to ignore a block of code? - Stack Overflow

    Feb 18, 2021 · Overall, the strategy is to wrap multiple things in one thing that can be prettier-ignore d. Another option is to move all the code you don't want to format (e.g., because it's …

  3. visual studio code - Insert `··` prettier/prettier - Stack Overflow

    Jul 31, 2020 · I have a project that has both prettier and eslint installed. The problem is that when I save a file eslint automatically changes the format of the file and it seems some rules conflict …

  4. How to make "Prettier" the default formatter in VS Code?

    Sep 18, 2020 · Make sure that you have prettier extension and enabled it. Go to setting by clicking ctrl with comma (,) that opens search setting bar. There search for default editor …

  5. Why does Prettier not format code in VS Code? - Stack Overflow

    Oct 1, 2018 · In my Nuxt application where ESlint and Prettier are installed and enabled, I switched to Visual Studio Code. When I open a .vue file and press CMD+ Shift + P and …

  6. Prettier ask me to replace ⏎↹↹ with - Stack Overflow

    May 26, 2021 · 3 I think this is caused by Prettier being configured to use spaces instead of tabs to indent and then your code editor using tabs. So Prettier wants you to replace those tabs …

  7. VS-Code Prettier Format On Save doesn't work - Stack Overflow

    Dec 21, 2019 · I noticed that prettier was not working after a VS code update. I don't know if it has to do with the problem but if it is, then the problem may re-appear on future updates, and this …

  8. What is the difference between the 4 "Prettier" VS Code extensions?

    Dec 7, 2021 · Prettier Now (remimarsal.prettier-now) and Prettier - Code Formatter(SimonSiefke.prettier-vscode) are both deprecated. => Should not be used anymore. …

  9. Prevent Prettier from converting single line object declarations …

    Aug 24, 2018 · I'd installed prettier extensions and my json object definitions are now breaking lines after formatting. How can I avoid it? I want to keep inline object declarations. for instance, …

  10. Delete CR only for TS/TSX files - Prettier ESLint on VSCode 1.46

    Jul 31, 2020 · I Created a React project using Create React Apps' Typescript template, added necessary plugins for ESLint 6.8.0 and configured ESLint and prettier together but whenever I …