mirror of
https://github.com/dense-analysis/ale.git
synced 2025-12-24 13:01:28 +08:00
Implement support for SQL linter sqlfluff (#4361)
This commit is contained in:
39
test/handler/test_sql_sqlfluff_handler.vader
Normal file
39
test/handler/test_sql_sqlfluff_handler.vader
Normal file
@@ -0,0 +1,39 @@
|
||||
Before:
|
||||
runtime ale_linters/sql/sqlfluff.vim
|
||||
|
||||
After:
|
||||
Restore
|
||||
|
||||
call ale#linter#Reset()
|
||||
|
||||
Execute(The sqlfluff handler should handle basic warnings):
|
||||
AssertEqual
|
||||
\ [
|
||||
\ {
|
||||
\ 'filename': 'schema.sql',
|
||||
\ 'lnum': 1,
|
||||
\ 'col': 8,
|
||||
\ 'type': 'W',
|
||||
\ 'code': 'L010',
|
||||
\ 'text': 'Keywords must be consistently upper case.',
|
||||
\ },
|
||||
\ {
|
||||
\ 'filename': 'schema.sql',
|
||||
\ 'lnum': 13,
|
||||
\ 'col': 2,
|
||||
\ 'type': 'W',
|
||||
\ 'code': 'L003',
|
||||
\ 'text': 'Expected 1 indentation, found 0 [compared to line 12]',
|
||||
\ },
|
||||
\ {
|
||||
\ 'filename': 'schema.sql',
|
||||
\ 'lnum': 16,
|
||||
\ 'col': 1,
|
||||
\ 'type': 'W',
|
||||
\ 'code': 'L009',
|
||||
\ 'text': 'Files must end with a single trailing newline.',
|
||||
\ },
|
||||
\ ],
|
||||
\ ale_linters#sql#sqlfluff#Handle(1, [
|
||||
\ '[{"filepath": "schema.sql", "violations": [{"line_no": 1, "line_pos": 8, "code": "L010", "description": "Keywords must be consistently upper case."}, {"line_no": 13, "line_pos": 2, "code": "L003", "description": "Expected 1 indentation, found 0 [compared to line 12]"}, {"line_no": 16, "line_pos": 1, "code": "L009", "description": "Files must end with a single trailing newline."}]}]',
|
||||
\ ])
|
||||
Reference in New Issue
Block a user