All patches and comments are welcome. Please squash your changes to logical
commits before using git-format-patch and git-send-email to
patches@git.madduck.net.
If you'd read over the Git project's submission guidelines and adhered to them,
I'd be especially grateful.
1 ===============================================================================
2 ALE Solidity Integration *ale-solidity-options*
5 ===============================================================================
6 solc *ale-solidity-solc*
8 *ale-options.solidity_solc_executable*
9 *g:ale_solidity_solc_executable*
10 *b:ale_solidity_solc_executable*
11 solidity_solc_executable
12 g:ale_solidity_solc_executable
16 Override the invoked solc binary. For truffle/hardhat binaries.
18 *ale-options.solidity_solc_options*
19 *g:ale_solidity_solc_options*
20 *b:ale_solidity_solc_options*
22 g:ale_solidity_solc_options
26 This variable can be set to pass extra options to solc.
29 ===============================================================================
30 solhint *ale-solidity-solhint*
32 Solhint should work out-of-the-box. You can further configure it using a
33 `.solihint.json` file. See https://github.com/protofire/solhint for more
37 ===============================================================================
38 solium *ale-solidity-solium*
40 Use of Solium linter for Solidity source code requires a .soliumrc.json
41 file in project root. This file can be generated by running `solium --init`.
42 See the corresponding solium usage for detailed instructions
43 (https://github.com/duaraghav8/Solium#usage).
46 ===============================================================================
47 forge *ale-solidity-forge*
49 `forge fmt` is not a linter, only a formatter. It should be used only as a
52 `forge fmt` should work out-of-the-box. You can further configure it using
53 `foundry.toml`. See the corresponding documentation for detailed
54 instructions (https://book.getfoundry.sh/reference/config/formatter).
57 ===============================================================================
58 vim:tw=78:ts=2:sts=2:sw=2:ft=help:norl: