Add a thriftcheck linter (#3852)

ThriftCheck (https://github.com/pinterest/thriftcheck) is a linter for
Thrift IDL files.
This commit is contained in:
Jon Parise
2021-08-03 17:29:07 -07:00
committed by GitHub
parent fa032b1b7f
commit 2dd9790281
7 changed files with 117 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
Before:
call ale#assert#SetUpLinterTest('thrift', 'thriftcheck')
After:
call ale#assert#TearDownLinterTest()
Execute(The default command should be correct):
AssertLinter 'thriftcheck', ale#Escape('thriftcheck')
\ . ' --stdin-filename %s %t'
Execute(The executable should be configurable):
let b:ale_thrift_thriftcheck_executable = 'foobar'
AssertLinter 'foobar', ale#Escape('foobar')
\ . ' --stdin-filename %s %t'
Execute(The string of options should be configurable):
let b:ale_thrift_thriftcheck_options = '--errors-only'
AssertLinter 'thriftcheck', ale#Escape('thriftcheck')
\ . ' --errors-only --stdin-filename %s %t'