diff options
author | Trevor Whitney <trevorjwhitney@gmail.com> | 2021-09-20 19:49:15 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-21 10:49:15 +0900 |
commit | f8a4c78b5b293d11da9075373c9de0bb5afdeffe (patch) | |
tree | dd04aca1ee0b8f8cb5c91c0aac5172f8de607f07 /test/linter | |
parent | 2f72a3ed1972d23a5ef50c78715ec68f090932e8 (diff) | |
download | ale-f8a4c78b5b293d11da9075373c9de0bb5afdeffe.zip |
Add support for jsonnetfmt and jsonnet-lint (#3907)
* update to lates
Signed-off-by: Trevor Whitney <trevorjwhitney@gmail.com>
* fix up docs
Signed-off-by: Trevor Whitney <trevorjwhitney@gmail.com>
* fix docs
Signed-off-by: Trevor Whitney <trevorjwhitney@gmail.com>
* get tests passing
Signed-off-by: Trevor Whitney <trevorjwhitney@gmail.com>
* update regex
Signed-off-by: Trevor Whitney <trevorjwhitney@gmail.com>
* use ale#Pad and AssertFixer
Signed-off-by: Trevor Whitney <trevorjwhitney@gmail.com>
Diffstat (limited to 'test/linter')
-rw-r--r-- | test/linter/test_jsonnet_lint.vader | 19 | ||||
-rw-r--r-- | test/linter/test_jsonnetfmt.vader | 19 |
2 files changed, 38 insertions, 0 deletions
diff --git a/test/linter/test_jsonnet_lint.vader b/test/linter/test_jsonnet_lint.vader new file mode 100644 index 00000000..529ae008 --- /dev/null +++ b/test/linter/test_jsonnet_lint.vader @@ -0,0 +1,19 @@ +Before: + call ale#assert#SetUpLinterTest('jsonnet', 'jsonnet_lint') + call ale#test#SetFilename('../jsonnet_files/testfile.jsonnet') + +After: + Restore + + call ale#assert#TearDownLinterTest() + +Execute(The default jsonnet-lint command should be correct): + AssertLinter 'jsonnet-lint', + \ ale#Escape('jsonnet-lint') . ' %t' + +Execute(jsonnet-lint command and options should be customizable): + let g:ale_jsonnet_jsonnet_lint_executable = 'jsonnet' + let g:ale_jsonnet_jsonnet_lint_options = 'fmt' + + AssertLinter 'jsonnet', + \ ale#Escape('jsonnet') . ' fmt %t' diff --git a/test/linter/test_jsonnetfmt.vader b/test/linter/test_jsonnetfmt.vader new file mode 100644 index 00000000..d070cd9f --- /dev/null +++ b/test/linter/test_jsonnetfmt.vader @@ -0,0 +1,19 @@ +Before: + call ale#assert#SetUpLinterTest('jsonnet', 'jsonnetfmt') + call ale#test#SetFilename('../jsonnet_files/testfile.jsonnet') + +After: + Restore + + call ale#assert#TearDownLinterTest() + +Execute(The default jsonnetfmt command should be correct): + AssertLinter 'jsonnetfmt', + \ ale#Escape('jsonnetfmt') . ' %t' + +Execute(jsonnetfmt command and options should be customizable): + let g:ale_jsonnet_jsonnetfmt_executable = 'jsonnet' + let g:ale_jsonnet_jsonnetfmt_options = 'fmt' + + AssertLinter 'jsonnet', + \ ale#Escape('jsonnet') . ' fmt %t' |