-
Notifications
You must be signed in to change notification settings - Fork 84
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: add biome formatter #339
Conversation
(buffer-local-value 'lisp-indent-function buffer)) | ||
(buffer-local-value 'lisp-indent-function buffer)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Adjusted the indentation in this line to be consistent with the whole file. I can revert it if undesired.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh oof. Thanks for fixing that.
cc52984
to
ad29693
Compare
@@ -35,6 +35,7 @@ | |||
"-")) | |||
(brittany . ("brittany")) | |||
(buildifier . ("buildifier")) | |||
(biome . ("apheleia-npx" "biome" "format" "--stdin-file-path" filepath)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
FYI - format
does not sort imports (for some strange reason), however applying both check
and --fix
to the command then it does.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you, this is great, sorry for the delay!
See https://biomejs.dev/
Alternative formatter to
prettier
closes #323