-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add support for fallback formatters (#69)
* feat: implement support for multiple formatters * feat: implement multiple formatters for python * feat: add support for fallback formatters for all languages * refactor: remove a lot of dupplicate code * chore: update schema * style: format code * chore: add formatting to precommit command * fix: remove default_enabled * feat: setup default fallback formatters * chore: rename format_single to format_snippet * test: validate fallback formatters work * docs: document formatter configuration
- Loading branch information
Showing
37 changed files
with
1,814 additions
and
1,409 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,6 +26,7 @@ test-coverage: | |
|
||
precommit: | ||
cargo clean | ||
cargo fmt | ||
make build | ||
make lint | ||
make test | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"$schema": "https://raw.githubusercontent.com/hougesen/mdsf/main/schemas/v0.0.1/mdsf.schema.json", | ||
"markdown": { | ||
"enabled": false, | ||
"formatter": [] | ||
} | ||
} |
Oops, something went wrong.