diff --git a/.gitignore b/.gitignore
index b71c270d7368c10acd64ddf90258c3c584367664..bd7f34b481041163b45c4c75ad4757d28ec0ca20 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,13 +1,38 @@
-target/
-**/target/
+!polkadot.service
+.cargo-remote.toml
+.direnv/
+.DS_Store
+.env*
 .idea
+.local
 .vscode
-.DS_Store
-/.cargo/config
-polkadot_argument_parsing
-**/node_modules
-**/chains/
+.wasm-binaries
+*.bin
 *.iml
-.env
+*.orig
+*.rej
+*.swp
 **/._*
-
+**/.criterion/
+**/*.rs.bk
+**/chains/
+**/hfuzz_target/
+**/hfuzz_workspace/
+**/node_modules
+**/target/
+**/wip/*.stderr
+/.cargo/config
+/.envrc
+artifacts
+bin/node-template/Cargo.lock
+nohup.out
+polkadot_argument_parsing
+polkadot.*
+pwasm-alloc/Cargo.lock
+pwasm-libc/Cargo.lock
+release-artifacts
+release.json
+rls*.log
+runtime/wasm/target/
+substrate.code-workspace
+target/
diff --git a/rustfmt.toml b/.rustfmt.toml
similarity index 100%
rename from rustfmt.toml
rename to .rustfmt.toml
diff --git a/cumulus/.cargo/config.toml b/cumulus/.cargo/config.toml
deleted file mode 100644
index 4796a2c26965c1021d14c6acc854bca1aea76941..0000000000000000000000000000000000000000
--- a/cumulus/.cargo/config.toml
+++ /dev/null
@@ -1,33 +0,0 @@
-#
-# An auto defined `clippy` feature was introduced,
-# but it was found to clash with user defined features,
-# so was renamed to `cargo-clippy`.
-#
-# If you want standard clippy run:
-# RUSTFLAGS= cargo clippy
-[target.'cfg(feature = "cargo-clippy")']
-rustflags = [
-  "-Aclippy::all",
-  "-Dclippy::correctness",
-  "-Aclippy::if-same-then-else",
-  "-Aclippy::clone-double-ref",
-  "-Dclippy::complexity",
-  "-Aclippy::zero-prefixed-literal",     # 00_1000_000
-  "-Aclippy::type_complexity",           # raison d'etre
-  "-Aclippy::nonminimal-bool",           # maybe
-  "-Aclippy::borrowed-box",              # Reasonable to fix this one
-  "-Aclippy::too-many-arguments",        # (Turning this on would lead to)
-  "-Aclippy::unnecessary_cast",          # Types may change
-  "-Aclippy::identity-op",               # One case where we do 0 +
-  "-Aclippy::useless_conversion",        # Types may change
-  "-Aclippy::unit_arg",                  # styalistic.
-  "-Aclippy::option-map-unit-fn",        # styalistic
-  "-Aclippy::bind_instead_of_map",       # styalistic
-  "-Aclippy::erasing_op",                # E.g. 0 * DOLLARS
-  "-Aclippy::eq_op",                     # In tests we test equality.
-  "-Aclippy::while_immutable_condition", # false positives
-  "-Aclippy::needless_option_as_deref",  # false positives
-  "-Aclippy::derivable_impls",           # false positives
-  "-Aclippy::stable_sort_primitive",     # prefer stable sort
-  "-Aclippy::extra-unused-type-parameters", # stylistic
-]
diff --git a/cumulus/.gitignore b/cumulus/.gitignore
deleted file mode 100644
index 225be857745879e7e8f15ec09c68f65b0da34c48..0000000000000000000000000000000000000000
--- a/cumulus/.gitignore
+++ /dev/null
@@ -1,11 +0,0 @@
-**/target/
-.idea
-.vscode
-.DS_Store
-/.cargo/config
-polkadot_argument_parsing
-**/node_modules
-**/chains/
-*.iml
-.env
-**/._*
diff --git a/cumulus/.rustfmt.toml b/cumulus/.rustfmt.toml
deleted file mode 100644
index e2c4a037f37fe229bd237cf50c4bb218814b890f..0000000000000000000000000000000000000000
--- a/cumulus/.rustfmt.toml
+++ /dev/null
@@ -1,28 +0,0 @@
-# Basic
-edition = "2021"
-hard_tabs = true
-max_width = 100
-use_small_heuristics = "Max"
-
-# Imports
-imports_granularity = "Crate"
-reorder_imports = true
-
-# Consistency
-newline_style = "Unix"
-
-# Format comments
-comment_width = 100
-wrap_comments = true
-
-# 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
diff --git a/polkadot/.cargo/config.toml b/polkadot/.cargo/config.toml
deleted file mode 100644
index 4796a2c26965c1021d14c6acc854bca1aea76941..0000000000000000000000000000000000000000
--- a/polkadot/.cargo/config.toml
+++ /dev/null
@@ -1,33 +0,0 @@
-#
-# An auto defined `clippy` feature was introduced,
-# but it was found to clash with user defined features,
-# so was renamed to `cargo-clippy`.
-#
-# If you want standard clippy run:
-# RUSTFLAGS= cargo clippy
-[target.'cfg(feature = "cargo-clippy")']
-rustflags = [
-  "-Aclippy::all",
-  "-Dclippy::correctness",
-  "-Aclippy::if-same-then-else",
-  "-Aclippy::clone-double-ref",
-  "-Dclippy::complexity",
-  "-Aclippy::zero-prefixed-literal",     # 00_1000_000
-  "-Aclippy::type_complexity",           # raison d'etre
-  "-Aclippy::nonminimal-bool",           # maybe
-  "-Aclippy::borrowed-box",              # Reasonable to fix this one
-  "-Aclippy::too-many-arguments",        # (Turning this on would lead to)
-  "-Aclippy::unnecessary_cast",          # Types may change
-  "-Aclippy::identity-op",               # One case where we do 0 +
-  "-Aclippy::useless_conversion",        # Types may change
-  "-Aclippy::unit_arg",                  # styalistic.
-  "-Aclippy::option-map-unit-fn",        # styalistic
-  "-Aclippy::bind_instead_of_map",       # styalistic
-  "-Aclippy::erasing_op",                # E.g. 0 * DOLLARS
-  "-Aclippy::eq_op",                     # In tests we test equality.
-  "-Aclippy::while_immutable_condition", # false positives
-  "-Aclippy::needless_option_as_deref",  # false positives
-  "-Aclippy::derivable_impls",           # false positives
-  "-Aclippy::stable_sort_primitive",     # prefer stable sort
-  "-Aclippy::extra-unused-type-parameters", # stylistic
-]
diff --git a/polkadot/.gitignore b/polkadot/.gitignore
deleted file mode 100644
index 61ef9e91a55e7007926b35e3cba2aea95788830b..0000000000000000000000000000000000000000
--- a/polkadot/.gitignore
+++ /dev/null
@@ -1,16 +0,0 @@
-**/target/
-**/*.rs.bk
-*.swp
-.wasm-binaries
-runtime/wasm/target/
-**/._*
-.idea
-.vscode
-polkadot.*
-!polkadot.service
-.DS_Store
-.env
-
-artifacts
-release-artifacts
-release.json
diff --git a/polkadot/rustfmt.toml b/polkadot/rustfmt.toml
deleted file mode 100644
index e2c4a037f37fe229bd237cf50c4bb218814b890f..0000000000000000000000000000000000000000
--- a/polkadot/rustfmt.toml
+++ /dev/null
@@ -1,28 +0,0 @@
-# Basic
-edition = "2021"
-hard_tabs = true
-max_width = 100
-use_small_heuristics = "Max"
-
-# Imports
-imports_granularity = "Crate"
-reorder_imports = true
-
-# Consistency
-newline_style = "Unix"
-
-# Format comments
-comment_width = 100
-wrap_comments = true
-
-# 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
diff --git a/substrate/.cargo/config.toml b/substrate/.cargo/config.toml
deleted file mode 100644
index 4796a2c26965c1021d14c6acc854bca1aea76941..0000000000000000000000000000000000000000
--- a/substrate/.cargo/config.toml
+++ /dev/null
@@ -1,33 +0,0 @@
-#
-# An auto defined `clippy` feature was introduced,
-# but it was found to clash with user defined features,
-# so was renamed to `cargo-clippy`.
-#
-# If you want standard clippy run:
-# RUSTFLAGS= cargo clippy
-[target.'cfg(feature = "cargo-clippy")']
-rustflags = [
-  "-Aclippy::all",
-  "-Dclippy::correctness",
-  "-Aclippy::if-same-then-else",
-  "-Aclippy::clone-double-ref",
-  "-Dclippy::complexity",
-  "-Aclippy::zero-prefixed-literal",     # 00_1000_000
-  "-Aclippy::type_complexity",           # raison d'etre
-  "-Aclippy::nonminimal-bool",           # maybe
-  "-Aclippy::borrowed-box",              # Reasonable to fix this one
-  "-Aclippy::too-many-arguments",        # (Turning this on would lead to)
-  "-Aclippy::unnecessary_cast",          # Types may change
-  "-Aclippy::identity-op",               # One case where we do 0 +
-  "-Aclippy::useless_conversion",        # Types may change
-  "-Aclippy::unit_arg",                  # styalistic.
-  "-Aclippy::option-map-unit-fn",        # styalistic
-  "-Aclippy::bind_instead_of_map",       # styalistic
-  "-Aclippy::erasing_op",                # E.g. 0 * DOLLARS
-  "-Aclippy::eq_op",                     # In tests we test equality.
-  "-Aclippy::while_immutable_condition", # false positives
-  "-Aclippy::needless_option_as_deref",  # false positives
-  "-Aclippy::derivable_impls",           # false positives
-  "-Aclippy::stable_sort_primitive",     # prefer stable sort
-  "-Aclippy::extra-unused-type-parameters", # stylistic
-]
diff --git a/substrate/.git-blame-ignore-revs b/substrate/.git-blame-ignore-revs
index c99a3070231d8e3ec6ed1365fdd1221c162779b8..aae391d6d83514422243e532895dcba8ea9398ac 100644
--- a/substrate/.git-blame-ignore-revs
+++ b/substrate/.git-blame-ignore-revs
@@ -10,6 +10,6 @@
 #
 # You should add new commit hashes to this file when you create or find such big
 # automated refactorings while reading code history. If you only know the short hash,
-# use `git rev-parse 1d5abf01` to expand it to the full SHA1 hash needed in this file.
+# use `git rev-parse 7b56ab15b4` to expand it to the full SHA1 hash needed in this file.
 
-1d5abf01abafdb6c15bcd0172f5de09fd87c5fbf # Run cargo fmt on the whole code base (#9394)
+7b56ab15b4a8e06df5eefc17e600e3c1419aede5 # Run cargo fmt on the whole code base (#9394)
diff --git a/substrate/.gitignore b/substrate/.gitignore
deleted file mode 100644
index 65059279f3a551802b43962c88b1f0b6e8c2a142..0000000000000000000000000000000000000000
--- a/substrate/.gitignore
+++ /dev/null
@@ -1,30 +0,0 @@
-**/target/
-**/*.rs.bk
-*.swp
-.wasm-binaries
-pwasm-alloc/target/
-pwasm-libc/target/
-pwasm-alloc/Cargo.lock
-pwasm-libc/Cargo.lock
-bin/node/runtime/wasm/target/
-**/._*
-**/.criterion/
-.vscode
-polkadot.*
-.DS_Store
-.idea/
-nohup.out
-rls*.log
-*.orig
-*.rej
-**/wip/*.stderr
-.local
-**/hfuzz_target/
-**/hfuzz_workspace/
-.cargo-remote.toml
-*.bin
-*.iml
-bin/node-template/Cargo.lock
-substrate.code-workspace
-.direnv/
-/.envrc
diff --git a/substrate/rustfmt.toml b/substrate/rustfmt.toml
deleted file mode 100644
index f6fbe80064fce44b2417af4f8a6929ce7a7a47ef..0000000000000000000000000000000000000000
--- a/substrate/rustfmt.toml
+++ /dev/null
@@ -1,24 +0,0 @@
-# Basic
-hard_tabs = true
-max_width = 100
-use_small_heuristics = "Max"
-# Imports
-imports_granularity = "Crate"
-reorder_imports = true
-# Consistency
-newline_style = "Unix"
-# Format comments
-comment_width = 100
-wrap_comments = true
-# 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
-edition = "2021"