diff options
author | Christian Segundo | 2023-10-08 11:52:40 +0200 |
---|---|---|
committer | Christian Segundo | 2023-10-08 22:30:00 +0200 |
commit | afa6b4b6195483d73cb6a91bc757652301275ed6 (patch) | |
tree | 2c121e4de865febbe809379c6ec0fc725c92125d /neovim.toml | |
parent | a4644e03b1aa7daf0f2d4c0474d04c3b3aabebbd (diff) | |
download | promqlfmt-afa6b4b6195483d73cb6a91bc757652301275ed6.tar.gz |
Add test cases
Diffstat (limited to 'neovim.toml')
-rw-r--r-- | neovim.toml | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/neovim.toml b/neovim.toml new file mode 100644 index 0000000..352bd0b --- /dev/null +++ b/neovim.toml @@ -0,0 +1,49 @@ +[selene] +base = "lua51" +name = "neovim" + +[vim] +any = true + +[jit] +any = true + +[[describe.args]] +type = "string" +[[describe.args]] +type = "function" + +[[it.args]] +type = "string" +[[it.args]] +type = "function" + +[[before_each.args]] +type = "function" +[[after_each.args]] +type = "function" + +[assert.is_not] +any = true + +[[assert.equals.args]] +type = "any" +[[assert.equals.args]] +type = "any" +[[assert.equals.args]] +type = "any" +required = false + +[[assert.same.args]] +type = "any" +[[assert.same.args]] +type = "any" + +[[assert.truthy.args]] +type = "any" + +[[assert.spy.args]] +type = "any" + +[[assert.stub.args]] +type = "any" |