Skip to content

Commit

Permalink
Merge branch 'main' into ci
Browse files Browse the repository at this point in the history
  • Loading branch information
weezy20 committed Mar 9, 2024
2 parents 5b7f20d + 12b562b commit 59b5e19
Show file tree
Hide file tree
Showing 34 changed files with 3,525 additions and 1,248 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
**/target/
**/node_modules/
/src/x.rs

.DS_Store
10 changes: 3 additions & 7 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
[submodule "templates/ept"]
path = templates/ept
url = [email protected]:paritytech/extended-parachain-template.git

[submodule "templates/vanilla-parachain"]
path = templates/vanilla-parachain
url = [email protected]:r0guelabs/vanilla-parachain.git
[submodule "templates/base-parachain"]
path = templates/base-parachain
url = [email protected]:r0gue-io/base-parachain.git

24 changes: 24 additions & 0 deletions .rustfmt.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Basic
edition = "2021"
hard_tabs = true
max_width = 100
use_small_heuristics = "Max"
# Imports
imports_granularity = "Crate"
reorder_imports = true
# Consistency
newline_style = "Unix"
# Misc
chain_width = 80
spaces_around_ranges = false
binop_separator = "Back"
reorder_impl_items = false
match_arm_leading_pipes = "Preserve"
match_arm_blocks = false
match_block_trailing_comma = true
trailing_comma = "Vertical"
trailing_semicolon = false
use_field_init_shorthand = true
# Format comments
comment_width = 100
wrap_comments = true
Loading

0 comments on commit 59b5e19

Please sign in to comment.