An open API service indexing awesome lists of open source software.

https://github.com/freesteph/emacs-biome-js

A hacky integration of BiomeJS with Emacs
https://github.com/freesteph/emacs-biome-js

Last synced: 8 months ago
JSON representation

A hacky integration of BiomeJS with Emacs

Awesome Lists containing this project

README

          

* emacs-biome-js

*EDIT*: turns out people had already done a better job elsewhere:

- https://github.com/yadex205/emacs-biomejs-format
- https://github.com/craneduck/flycheck-biomejs

Hence why this repository is now archived.

** Description

A hacky integration of [[https://biomejs.dev/][BiomeJS]] and Emacs via a Flycheck backend and a
format-on-save hook.

I am not a talented Lisp hacker so this is very much a
work-in-progress and everyone is strongly encouraged to
contribute/provide feedback.

** Usage

#+begin_src elisp
;; if you want the Flycheck backend
(add-to-list 'flycheck-checkers 'biome)

;; if you want the format-on-save-hook
(add-hook 'js-mode-hook 'biome-js-autosave-mode)
#+end_src