Skip to content

Commit 8a8742d

Browse files
committed
build: added workspace and selene settings
1 parent 28c6da2 commit 8a8742d

File tree

3 files changed

+46
-0
lines changed

3 files changed

+46
-0
lines changed

.nvim.settings.json

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"lua-dev": { "library": { "plugins": ["plenary.nvim", "nvim-lspconfig"] } }
3+
}

selene.toml

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
std="vim+lua51"

vim.toml

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
[vim]
2+
any = true
3+
4+
[[describe.args]]
5+
type = "string"
6+
[[describe.args]]
7+
type = "function"
8+
9+
[[it.args]]
10+
type = "string"
11+
[[it.args]]
12+
type = "function"
13+
14+
[[before_each.args]]
15+
type = "function"
16+
[[after_each.args]]
17+
type = "function"
18+
19+
[assert.is_not]
20+
any = true
21+
22+
[[assert.equals.args]]
23+
type = "any"
24+
[[assert.equals.args]]
25+
type = "any"
26+
[[assert.equals.args]]
27+
type = "any"
28+
required = false
29+
30+
[[assert.same.args]]
31+
type = "any"
32+
[[assert.same.args]]
33+
type = "any"
34+
35+
[[assert.truthy.args]]
36+
type = "any"
37+
38+
[[assert.spy.args]]
39+
type = "any"
40+
41+
[[assert.stub.args]]
42+
type = "any"

0 commit comments

Comments
 (0)