You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have my javascript files beautified with atom-beautify by engine ESLint Fixer, and also want to beautify the script tag in vue template files with ESLint Fixer to make the same javascript format.
How can I use? It's there some simple way?
Sorry to disturb you!
PS. I'm poor in English...
The text was updated successfully, but these errors were encountered:
Open your .vue file and exec atom-beautify:beautify-language-javascript using Atom command palette
configure keymap.cson if you want
# beautify
'atom-text-editor':
'ctrl-i': 'atom-beautify:beautify-editor'
# force use ESLint Fixer engine provided atom-beautify for js in .vue files
"atom-text-editor[data-grammar='text html vue']":
'ctrl-i': 'atom-beautify:beautify-language-javascript'
atom-beautify/src/beautifiers/vue-beautifier.coffee
Line 31 in e0dc5c3
I have my javascript files beautified with
atom-beautify
by engineESLint Fixer
, and also want to beautify the script tag in vue template files withESLint Fixer
to make the same javascript format.How can I use? It's there some simple way?
Sorry to disturb you!
PS. I'm poor in English...
The text was updated successfully, but these errors were encountered: