From ca182602b080113acf8da94c80b355f7669a7e72 Mon Sep 17 00:00:00 2001 From: AlienTornadosaurusHex <> Date: Sun, 4 Jun 2023 01:39:58 +0000 Subject: [PATCH] move formatting options to [fmt] to actual have them applied Signed-off-by: AlienTornadosaurusHex <> --- foundry.toml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/foundry.toml b/foundry.toml index 7d7a4c9..6f2c697 100644 --- a/foundry.toml +++ b/foundry.toml @@ -4,6 +4,9 @@ src = 'src' out = 'out' libs = ["node_modules", "lib"] +# Tests +verbosity = 2 + # Compiler auto_detect_solc = true via_ir = true @@ -12,12 +15,11 @@ optimizer-runs = 1 # Network chain_id = 1 -rpc_endpoints = { mainnet = "${MAINNET_RPC_URL}" } -# Tests -verbosity = 2 +[rpc_endpoints] +mainnet = "${MAINNET_RPC_URL}" -# Formatting +[fmt] line_length = 110 number_underscore = 'thousands' bracket_spacing = true \ No newline at end of file