emacs-format-all-the-code
emacs-format-all-the-code copied to clipboard
Auto-format source code in many languages with one command
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*`  I already install the plugin 
[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...
Is it acceptable to add new formatter for emacs-lisp, which is emacs package itself? (elisp-autofmt)
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...
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...
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...