Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Try foundry fmt #136

Draft
wants to merge 2 commits into
base: master
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 1 addition & 6 deletions contracts/interfaces/ILimitOrder.sol
Original file line number Diff line number Diff line change
@@ -32,12 +32,7 @@ interface ILimitOrder is IStrategyBase {
/// @param recipient The address of the recipient which will receive tokens from maker
/// @param fillReceipt Contains details of this single fill
event LimitOrderFilledByTrader(
bytes32 indexed orderHash,
address indexed maker,
address indexed taker,
bytes32 allowFillHash,
address recipient,
FillReceipt fillReceipt
bytes32 indexed orderHash, address indexed maker, address indexed taker, bytes32 allowFillHash, address recipient, FillReceipt fillReceipt
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This creates different result from prettier and fmt: prettier has a problem but fmt does not, though this line does not exceed 160 characters...so I'm not sure why prettier is complaining.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

And this difference from fmt results in it updating many function and event declarations. This one is one of the many examples.

);

/// @notice Emitted when an order is filled by interacting with an external protocol
8 changes: 8 additions & 0 deletions foundry.toml
Original file line number Diff line number Diff line change
@@ -15,6 +15,14 @@ initial_balance = '0xffffffffffffffffffffffff' # the initial bala
gas_limit = 9223372036854775807 # the gas limit in tests
gas_price = 0 # the gas price (in wei) in tests

[fmt]
line_length = 160 # Maximum line length where formatter will try to wrap the line
tab_width = 4 # Number of spaces per indentation level
bracket_spacing = true # Whether or not to print spaces between brackets
multiline_func_header = 'params_first'
quote_style = 'double'
ignore = ['test/**/*.sol']

[profile.ci]
force = false # whether to ignore the cache (clean build)