Code Monkey home page Code Monkey logo

Comments (9)

wahengchang avatar wahengchang commented on May 19, 2024 32

it is still existed, there is not way to fix the error 38:2 error Delete prettier/prettier

from eslint-plugin-prettier.

CharlesKumar avatar CharlesKumar commented on May 19, 2024 12

Hi @wahengchang
you can fix that error by running the command
npx prettier --write "src/**/*.vue"

check whether there are any pending errors by using the command
npx prettier --check "src/**/*.vue"

see here for more details

NOTE: you can install prettier globally with npm i -g prettier and be sure to use the version you need. (usually the latest version)

from eslint-plugin-prettier.

AlexBrohshtut avatar AlexBrohshtut commented on May 19, 2024 9

Another fix that worked for me is to switch default html formatter to 'prettier' (it was prettyhtml for some reason):
image

from eslint-plugin-prettier.

PVautour avatar PVautour commented on May 19, 2024 5

I fixed it by changing my .prettierrc to use tabs instead of spaces:

just add "useTabs": true to the file.

ex:

{
"semi": false,
"arrowParens": "always",
"singleQuote": true,
"useTabs": true
}

from eslint-plugin-prettier.

gldraphael avatar gldraphael commented on May 19, 2024 4

Possibly related if everyone having this issue is on Windows:

The project npm run builds without errors on a Mac, but throws the following on a Windows CI machine:

warning Delete prettier/prettier

image

The fix (in my case) was to make sure line-endings for .vue files aren't changed by git on checkout, by adding the following to .gitattributes:

* text=auto
*.vue text eol=lf

(If it doesn't work, do try re-cloning after pushing changes to the .gitattributes file.)

((You could also set end_of_line = lf in your .editorconfig if you use VS Code's editorconfig plugin but that'll only fix it for editorconfig users.))

from eslint-plugin-prettier.

BenoitZugmeyer avatar BenoitZugmeyer commented on May 19, 2024 1

For those interested, it will be fixed in eslint-plugin-html BenoitZugmeyer/eslint-plugin-html#76

🥂

from eslint-plugin-prettier.

not-an-aardvark avatar not-an-aardvark commented on May 19, 2024

Thanks for reporting. Does this issue also occur when you use prettier directly? If so, then it's a bug in prettier, not eslint-plugin-prettier.

from eslint-plugin-prettier.

pieterwouda avatar pieterwouda commented on May 19, 2024

I'm not sure how to use prettier directly on a .vue file.

When I run prettier "src/views/Test.vue", I get another error.

SyntaxError: Adjacent JSX elements must be wrapped in an enclosing tag (7:1)

from eslint-plugin-prettier.

not-an-aardvark avatar not-an-aardvark commented on May 19, 2024

This seems like it might be an issue with the html parser you're using (possibly eslint-plugin-html).

eslint-plugin-prettier works as part of a larger stack:

  1. ESLint reads a file
  2. A preprocessor preprocesses the .vue source text into JavaScript text
  3. babel-eslint parses the JavaScript text into an AST
  4. eslint runs eslint-plugin-prettier and gives it the AST and the text
  5. eslint-plugin-prettier runs prettier on the text, and reports problems to eslint based on a diff with prettier's output
  6. eslint reports the problems

I'm not quite sure where the issue is occurring here, but I'm think it's in step 2. I'm fairly certain it's not an issue with eslint-plugin-prettier itself, because it just takes the text that ESLint gives it and passes it to prettier.

from eslint-plugin-prettier.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.