prettier / prettier-emacs

Minor mode to format JS code on file save
http://jlongster.com/A-Prettier-Formatter
375 stars 54 forks source link

Unable to run in the org mode source code block #38

Open kkweon opened 6 years ago

kkweon commented 6 years ago

Steps to reproduce

  1. Create any org file temp.org
  2. Create a source code block
#+BEGIN_SRC js
  const a = {
    data: [],
    nextOffset: 1
  }
#+END_SRC
  1. Edit and run prettier-js
prettier errors:
[error] No parser could be inferred for file: /Users/kkweon/temp/temp.org[*Org Src temp.org[ js ]*]

Thank you.

rcoedo commented 6 years ago

You could fix this using the custom variable prettier-js-args to specify the prettier parse you want to use.

kkweon commented 6 years ago

And can still be used to format js, ts, json, less, scss ? It will force the parser?

rcoedo commented 6 years ago

Yes, it forces the parser. You will have to set the variable to the right format for each one of these files. You could do this with hooks for example.

Edit: If you need more info on the prettier args you can run prettier --help in the command line.

bcc32 commented 3 years ago

Sorry to revive an old thread, but perhaps prettier could infer a reasonable extension from the major mode when there is no buffer-file-name, as is the case in org-mode source blocks?