Is there a way to format large format in Sublime Text?

Is there a plugin or parameter in Sublime Text that will allow you to format the code at the project level and use the .EditorConfig plugin?

I'm interested in learning how to manually use the .editorconfig settings, repeatedly dropping a few, removing trailing spaces, converting spaces to tabs, etc. between file types. To be the main one, I will limit my request to HTML, CSS / LESS / SASS and JS.

+7
javascript code-formatting html css sublimetext
source share
2 answers

There is no such tool yet. There are some tools that almost do what you want. For example, my not yet stable EditorConfig Tools , eclint (not sure how stable it is), and codepainter (which works only for JavaScript).

EditorConfig will be great. If someone finds something that I didn’t mention or don’t want to create the best, you can probably find some help or moral support on the EditorConfig mailing list.

+2
source share

No editor was used before, but a quick search led me to https://github.com/sindresorhus/editorconfig-sublime . Perhaps this plugin will do what you want.

0
source share

All Articles