-
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.
Merge pull request #17 from rust-dd/refactor/remove-view-macro
[WIP] refactor: remove view macro for better type inference
- Loading branch information
Showing
18 changed files
with
1,071 additions
and
909 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,11 +1,11 @@ | ||
max_width = 100 # Maximum width of each line | ||
tab_spaces = 4 # Number of spaces per tab | ||
indentation_style = "Auto" # "Tabs", "Spaces" or "Auto" | ||
newline_style = "Auto" # "Unix", "Windows" or "Auto" | ||
max_width = 120 # Maximum width of each line | ||
tab_spaces = 4 # Number of spaces per tab | ||
indentation_style = "Auto" # "Tabs", "Spaces" or "Auto" | ||
newline_style = "Auto" # "Unix", "Windows" or "Auto" | ||
attr_value_brace_style = "WhenRequired" # "Always", "AlwaysUnlessLit", "WhenRequired" or "Preserve" | ||
macro_names = ["leptos::view", "view"] # Macro names which will be formatted | ||
macro_names = ["leptos::view", "view"] # Macro names which will be formatted | ||
|
||
# Attribute values can be formatted by custom formatters | ||
# Every attribute name may only select one formatter (this might change later on) | ||
[attr_values] | ||
class = "Tailwind" # "Tailwind" is the only attribute value formatter available for now | ||
class = "Tailwind" # "Tailwind" is the only attribute value formatter available for now |
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 |
---|---|---|
@@ -1 +1,3 @@ | ||
edition = "2021" | ||
edition = "2021" | ||
max_width = 120 # Maximum width of each line | ||
tab_spaces = 4 # Number of spaces per tab |
Oops, something went wrong.