2017-12-04 17:23:46 +00:00
|
|
|
Before:
|
|
|
|
runtime ale_linters/solidity/solhint.vim
|
|
|
|
|
|
|
|
After:
|
|
|
|
call ale#linter#Reset()
|
|
|
|
|
2021-04-15 00:01:18 +00:00
|
|
|
Execute(The solhint handler should parse linter error messages correctly):
|
2017-12-04 17:23:46 +00:00
|
|
|
AssertEqual
|
|
|
|
\ [
|
|
|
|
\ {
|
|
|
|
\ 'lnum': 1,
|
|
|
|
\ 'col': 17,
|
2017-12-05 19:02:15 +00:00
|
|
|
\ 'text': 'Compiler version must be fixed',
|
|
|
|
\ 'code': 'compiler-fixed',
|
2017-12-04 17:23:46 +00:00
|
|
|
\ 'type': 'W',
|
|
|
|
\ },
|
|
|
|
\ {
|
|
|
|
\ 'lnum': 4,
|
|
|
|
\ 'col': 8,
|
2017-12-05 19:02:15 +00:00
|
|
|
\ 'text': 'Use double quotes for string literals',
|
|
|
|
\ 'code': 'quotes',
|
2017-12-04 17:23:46 +00:00
|
|
|
\ 'type': 'E',
|
|
|
|
\ },
|
|
|
|
\ {
|
|
|
|
\ 'lnum': 5,
|
|
|
|
\ 'col': 8,
|
2017-12-05 19:02:15 +00:00
|
|
|
\ 'text': 'Use double quotes for string literals',
|
|
|
|
\ 'code': 'quotes',
|
2017-12-04 17:23:46 +00:00
|
|
|
\ 'type': 'E',
|
|
|
|
\ },
|
|
|
|
\ {
|
|
|
|
\ 'lnum': 13,
|
|
|
|
\ 'col': 3,
|
2017-12-05 19:02:15 +00:00
|
|
|
\ 'text': 'Expected indentation of 4 spaces but found 2',
|
|
|
|
\ 'code': 'indent',
|
2017-12-04 17:23:46 +00:00
|
|
|
\ 'type': 'E',
|
|
|
|
\ },
|
|
|
|
\ {
|
|
|
|
\ 'lnum': 14,
|
|
|
|
\ 'col': 3,
|
2017-12-05 19:02:15 +00:00
|
|
|
\ 'text': 'Expected indentation of 4 spaces but found 2',
|
|
|
|
\ 'code': 'indent',
|
2017-12-04 17:23:46 +00:00
|
|
|
\ 'type': 'E',
|
|
|
|
\ },
|
|
|
|
\ {
|
|
|
|
\ 'lnum': 47,
|
|
|
|
\ 'col': 3,
|
2017-12-05 19:02:15 +00:00
|
|
|
\ 'text': 'Function order is incorrect, public function can not go after internal function.',
|
|
|
|
\ 'code': 'func-order',
|
2017-12-04 17:23:46 +00:00
|
|
|
\ 'type': 'E',
|
|
|
|
\ },
|
|
|
|
\ ],
|
2021-04-15 00:01:18 +00:00
|
|
|
\ ale#handlers#solhint#Handle(bufnr(''), [
|
2017-12-04 17:23:46 +00:00
|
|
|
\ 'contracts/Bounty.sol: line 1, col 17, Warning - Compiler version must be fixed (compiler-fixed)',
|
|
|
|
\ 'contracts/Bounty.sol: line 4, col 8, Error - Use double quotes for string literals (quotes)',
|
|
|
|
\ 'contracts/Bounty.sol: line 5, col 8, Error - Use double quotes for string literals (quotes)',
|
|
|
|
\ 'contracts/Bounty.sol: line 13, col 3, Error - Expected indentation of 4 spaces but found 2 (indent)',
|
|
|
|
\ 'contracts/Bounty.sol: line 14, col 3, Error - Expected indentation of 4 spaces but found 2 (indent)',
|
|
|
|
\ 'contracts/Bounty.sol: line 47, col 3, Error - Function order is incorrect, public function can not go after internal function. (func-order)',
|
|
|
|
\ ])
|
2021-04-15 00:01:18 +00:00
|
|
|
|
|
|
|
|
|
|
|
Execute(The solhint handler should parse syntax error messages correctly):
|
|
|
|
AssertEqual
|
|
|
|
\ [
|
|
|
|
\ {
|
|
|
|
\ 'lnum': 30,
|
|
|
|
\ 'col': 4,
|
|
|
|
\ 'text': "missing ';' at 'uint248'",
|
|
|
|
\ 'code': 'Parse error',
|
|
|
|
\ 'type': 'E',
|
|
|
|
\ },
|
|
|
|
\ {
|
|
|
|
\ 'lnum': 203,
|
|
|
|
\ 'col': 4,
|
|
|
|
\ 'text': "no viable alternative at input '_loserStakeMultiplier}'",
|
|
|
|
\ 'code': 'Parse error',
|
|
|
|
\ 'type': 'E',
|
|
|
|
\ },
|
|
|
|
\ ],
|
|
|
|
\ ale#handlers#solhint#Handle(bufnr(''), [
|
|
|
|
\ "contracts/Bounty.sol: line 30, col 4, Error - Parse error: missing ';' at 'uint248'",
|
|
|
|
\ "contracts/Bounty.sol: line 203, col 4, Error - Parse error: no viable alternative at input '_loserStakeMultiplier}'",
|
|
|
|
\ ])
|