emacs-format-all-the-code icon indicating copy to clipboard operation
emacs-format-all-the-code copied to clipboard

Auto-format source code in many languages with one command

Results 56 emacs-format-all-the-code issues
Sort by recently updated
recently updated
newest added
trafficstars

It would be nice to support formatting Puppet code. The best formatter I found for that task is puppet-lint -f. I'd propose a pull request to add it, but unfortunately...

when use format-all-buffer for any php file, it shows ``` [error] Couldn't resolve parser "php". ``` in `*format-all-errors*` ![image](https://github.com/lassik/emacs-format-all-the-code/assets/97490782/efc781b1-5589-49ca-827a-0ddadd1d9f18) I already install the plugin ![image](https://github.com/lassik/emacs-format-all-the-code/assets/97490782/6808ef93-3927-4c7e-9b5d-3904a4e15a88)

[dprint](https://dprint.dev/) is > A pluggable and configurable code formatting platform written in Rust. It supports a number of formats and languages and can be extended using plugins. Since it can...

pull request wanted

I have added this formatter in my own config: ```emacs-lisp (define-format-all-formatter elisp-autofmt (:executable) (:install "M-x package-install elisp-autofmt") (:languages "Emacs Lisp") (:features region) (:format (format-all--buffer-native 'elisp-autofmt-mode (if region (lambda () (elisp-autofmt-region...

The default formatter for ruby is `rufo`. The maintainer is seeking new maintainers for it. Not sure, how this is going to progress over time. In the unfortunate event of...

help wanted

As titled, I noticed that when I invoke format-all's command to format the current buffer, the buffer will reposition itself (most likely because there are bits of code 'outside' of...

pull request wanted

The default sql formatter sqlformat doesn't work. For example: ```sql CREATE TABLE student ( sid INT PRIMARY KEY, name VARCHAR(16), login VARCHAR(32) UNIQUE, age SMALLINT, gpa FLOAT ); ``` format...

Repreduce: ```elisp (setq test (point-marker)) ;; => # (format-all-buffer) test ;; => # ``` As shown above, after call `format-all-buffer` and if the file changes, the marker position change to...

Currently the formatter for `sqlformat` goes like this: ```elisp (format-all--buffer-easy executable "--encoding" ienc "-") ``` Which is incorrect: Output of `sqlformat --help` ``` usage: sqlformat [OPTIONS] FILE, ... Format FILE...