Files
ale/test/linter/test_solhint.vader
w0rp 53b01d6a54 Fix #4499 - Fix solhint >= 3.4.0
Fix solhint for versions >= 3.4.0, while still supporting older
versions.

The solhint linter code has been moved out of the `handlers` directory
as it does not need to be shared between different filetypes. Code has
been simplified.

Co-authored-by: Henrique Barcelos <16565602+hbarcelos@users.noreply.github.com>
2023-09-17 17:24:23 +01:00

27 lines
867 B
Plaintext

Before:
call ale#assert#SetUpLinterTest('solidity', 'solhint')
let b:args = ' --formatter unix %s'
After:
unlet! b:args
unlet! b:executable
call ale#assert#TearDownLinterTest()
Execute(The default command should be correct):
AssertLinterCwd ''
AssertLinter 'solhint', ale#Escape('solhint') . b:args
Execute(The options should be configurable):
let g:ale_solidity_solhint_options = '--foobar'
AssertLinter 'solhint', ale#Escape('solhint') . ' --foobar' . b:args
Execute(solhint should be run from a containing project with solhint executable):
call ale#test#SetFilename('../test-files/solhint/Contract.sol')
let b:executable = ale#path#Simplify(g:dir . '/../test-files/solhint/node_modules/.bin/solhint')
AssertLinterCwd ale#path#Simplify(g:dir . '/../test-files/solhint')
AssertLinter b:executable, ale#Escape(b:executable) . b:args