Support 'gleam format' as Gleam fixer (#4710)

This commit is contained in:
Jonathan Palardy
2024-02-05 17:16:25 -08:00
committed by GitHub
parent 8922478a83
commit 1b24bd3f5f
8 changed files with 65 additions and 3 deletions

View File

@@ -291,6 +291,11 @@ let s:default_registry = {
\ 'suggested_filetypes': ['solidity'],
\ 'description': 'Fix Solidity files with forge fmt.',
\ },
\ 'gleam_format': {
\ 'function': 'ale#fixers#gleam_format#Fix',
\ 'suggested_filetypes': ['gleam'],
\ 'description': 'Fix Gleam files with gleam format.',
\ },
\ 'gofmt': {
\ 'function': 'ale#fixers#gofmt#Fix',
\ 'suggested_filetypes': ['go'],