About 50 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 For historical …

  2. 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 Select default formatter …

  3. 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 choose Format …

  4. Prettier not formatting HTML files in VS Code - Stack Overflow

    Sep 12, 2019 · For me i found that prettier was refusing to format files, however there was no errors in the output window in vs code. usually this happens when the html is not valid: missing tags, or tags …

  5. In VSCode, how do I effectively run eslint --fix and prettier --write ...

    Nov 15, 2023 · I've read the prettier documentation on integrating with linters, and some of those links appear to be relevant to my question, but those same links are recommended against. Also, most of …

  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 with spaces. …

  7. eslint - prettier settings for vscode - Stack Overflow

    If Prettier isn't showing up in your VS Code Settings, the extension may have silently crashed, which happens often when settings are changed in multiple places (i.e. tab size was changed in workspace …

  8. 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 generated) to a …

  9. javascript - What is Prettier keyboard shortcut command in VS Code to ...

    Jan 31, 2020 · Using Prettier: Anyone know the keyboard shortcuts to auto-format a single block of javascript in VSCode on highlight, without having to save the entire file using Prettier to use auto …

  10. 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 with pretti...