forge-fmt 0.2.0

solidity formatting
Documentation
1
2
3
4
5
6
7
8
9
10
11
contract UsingExampleContract {
 using  UsingExampleLibrary      for   *  ;
    using UsingExampleLibrary for uint;
   using Example.UsingExampleLibrary  for  uint;
        using { M.g, M.f} for uint;
using UsingExampleLibrary for   uint  global;
using { These, Are, MultipleLibraries, ThatNeedToBePut, OnSeparateLines } for uint;
using { This.isareally.longmember.access.expression.that.needs.to.besplit.into.lines } for uint;
using {and as &, or as |, xor as ^, cpl as ~} for Bitmap global;
using {eq as ==, ne as !=, lt as <, lte as <=, gt as >, gte as >=} for Bitmap global;
}