#852 - Capture error codes for tflint
This commit is contained in:
parent
fa7f0e2b85
commit
62904d39ee
@ -23,6 +23,7 @@ function! ale_linters#terraform#tflint#Handle(buffer, lines) abort
|
|||||||
\ 'lnum': l:error.line,
|
\ 'lnum': l:error.line,
|
||||||
\ 'text': l:error.message,
|
\ 'text': l:error.message,
|
||||||
\ 'type': l:type,
|
\ 'type': l:type,
|
||||||
|
\ 'code': l:error.detector,
|
||||||
\})
|
\})
|
||||||
endfor
|
endfor
|
||||||
|
|
||||||
|
@ -10,16 +10,19 @@ Execute(The tflint handler should parse items correctly):
|
|||||||
\ {
|
\ {
|
||||||
\ 'lnum': 12,
|
\ 'lnum': 12,
|
||||||
\ 'text': 'be warned, traveller',
|
\ 'text': 'be warned, traveller',
|
||||||
|
\ 'code': 'aws_db_instance_readable_password',
|
||||||
\ 'type': 'W',
|
\ 'type': 'W',
|
||||||
\ },
|
\ },
|
||||||
\ {
|
\ {
|
||||||
\ 'lnum': 9,
|
\ 'lnum': 9,
|
||||||
\ 'text': 'error message',
|
\ 'text': 'error message',
|
||||||
|
\ 'code': 'aws_elasticache_cluster_invalid_type',
|
||||||
\ 'type': 'E',
|
\ 'type': 'E',
|
||||||
\ },
|
\ },
|
||||||
\ {
|
\ {
|
||||||
\ 'lnum': 5,
|
\ 'lnum': 5,
|
||||||
\ 'text': 'just so ya know',
|
\ 'text': 'just so ya know',
|
||||||
|
\ 'code': 'aws_instance_not_specified_iam_profile',
|
||||||
\ 'type': 'I',
|
\ 'type': 'I',
|
||||||
\ },
|
\ },
|
||||||
\ ],
|
\ ],
|
||||||
|
Loading…
Reference in New Issue
Block a user