forge-fmt 0.2.0

solidity formatting
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// SPDX-License-Identifier: MIT

pragma solidity ^0.5.2;

// comment block starts here
// comment block continues
//

// comment block 2 starts here
// comment block 2 continues

contract Constructors is Ownable, Changeable {
    function Constructors(variable1) public Changeable(variable1) Ownable() onlyOwner {
    }

    constructor(variable1, variable2, variable3, variable4, variable5, variable6, variable7) public Changeable(variable1, variable2, variable3, variable4, variable5, variable6, variable7) Ownable() onlyOwner {}
}