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
- Host: GitHub
- URL: https://github.com/freesteph/emacs-biome-js
- Owner: freesteph
- Archived: true
- Created: 2024-09-16T12:11:43.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-10-21T12:42:41.000Z (over 1 year ago)
- Last Synced: 2025-02-06T14:57:23.091Z (over 1 year ago)
- Language: Emacs Lisp
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.org
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