Skip to content

Commit c728986

Browse files
committed
accept func test differences
1 parent 32d2076 commit c728986

File tree

2 files changed

+97
-0
lines changed

2 files changed

+97
-0
lines changed

test/testdata/schema/ghc98/default-config.golden.json

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@
1818
"changeTypeSignature": {
1919
"globalOn": true
2020
},
21+
"class": {
22+
"codeActionsOn": true,
23+
"codeLensOn": true
24+
},
2125
"eval": {
2226
"config": {
2327
"diff": true,
@@ -37,6 +41,21 @@
3741
"path": "fourmolu"
3842
}
3943
},
44+
"gadt": {
45+
"globalOn": true
46+
},
47+
"ghcide-code-actions-bindings": {
48+
"globalOn": true
49+
},
50+
"ghcide-code-actions-fill-holes": {
51+
"globalOn": true
52+
},
53+
"ghcide-code-actions-imports-exports": {
54+
"globalOn": true
55+
},
56+
"ghcide-code-actions-type-signatures": {
57+
"globalOn": true
58+
},
4059
"ghcide-completions": {
4160
"config": {
4261
"autoExtendOn": true,
@@ -81,6 +100,15 @@
81100
"qualifyImportedNames": {
82101
"globalOn": true
83102
},
103+
"rename": {
104+
"config": {
105+
"crossModule": false
106+
},
107+
"globalOn": true
108+
},
109+
"retrie": {
110+
"globalOn": true
111+
},
84112
"semanticTokens": {
85113
"config": {
86114
"classMethodToken": "method",
@@ -97,6 +125,9 @@
97125
},
98126
"globalOn": false
99127
},
128+
"splice": {
129+
"globalOn": true
130+
},
100131
"stan": {
101132
"globalOn": false
102133
}

test/testdata/schema/ghc98/vscode-extension-schema.golden.json

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,18 @@
3535
"scope": "resource",
3636
"type": "boolean"
3737
},
38+
"haskell.plugin.class.codeActionsOn": {
39+
"default": true,
40+
"description": "Enables class code actions",
41+
"scope": "resource",
42+
"type": "boolean"
43+
},
44+
"haskell.plugin.class.codeLensOn": {
45+
"default": true,
46+
"description": "Enables class code lenses",
47+
"scope": "resource",
48+
"type": "boolean"
49+
},
3850
"haskell.plugin.eval.config.diff": {
3951
"default": true,
4052
"markdownDescription": "Enable the diff output (WAS/NOW) of eval lenses",
@@ -77,6 +89,36 @@
7789
"scope": "resource",
7890
"type": "string"
7991
},
92+
"haskell.plugin.gadt.globalOn": {
93+
"default": true,
94+
"description": "Enables gadt plugin",
95+
"scope": "resource",
96+
"type": "boolean"
97+
},
98+
"haskell.plugin.ghcide-code-actions-bindings.globalOn": {
99+
"default": true,
100+
"description": "Enables ghcide-code-actions-bindings plugin",
101+
"scope": "resource",
102+
"type": "boolean"
103+
},
104+
"haskell.plugin.ghcide-code-actions-fill-holes.globalOn": {
105+
"default": true,
106+
"description": "Enables ghcide-code-actions-fill-holes plugin",
107+
"scope": "resource",
108+
"type": "boolean"
109+
},
110+
"haskell.plugin.ghcide-code-actions-imports-exports.globalOn": {
111+
"default": true,
112+
"description": "Enables ghcide-code-actions-imports-exports plugin",
113+
"scope": "resource",
114+
"type": "boolean"
115+
},
116+
"haskell.plugin.ghcide-code-actions-type-signatures.globalOn": {
117+
"default": true,
118+
"description": "Enables ghcide-code-actions-type-signatures plugin",
119+
"scope": "resource",
120+
"type": "boolean"
121+
},
80122
"haskell.plugin.ghcide-completions.config.autoExtendOn": {
81123
"default": true,
82124
"markdownDescription": "Extends the import list automatically when completing a out-of-scope identifier",
@@ -183,6 +225,24 @@
183225
"scope": "resource",
184226
"type": "boolean"
185227
},
228+
"haskell.plugin.rename.config.crossModule": {
229+
"default": false,
230+
"markdownDescription": "Enable experimental cross-module renaming",
231+
"scope": "resource",
232+
"type": "boolean"
233+
},
234+
"haskell.plugin.rename.globalOn": {
235+
"default": true,
236+
"description": "Enables rename plugin",
237+
"scope": "resource",
238+
"type": "boolean"
239+
},
240+
"haskell.plugin.retrie.globalOn": {
241+
"default": true,
242+
"description": "Enables retrie plugin",
243+
"scope": "resource",
244+
"type": "boolean"
245+
},
186246
"haskell.plugin.semanticTokens.config.classMethodToken": {
187247
"default": "method",
188248
"description": "LSP semantic token type to use for typeclass methods",
@@ -805,6 +865,12 @@
805865
"scope": "resource",
806866
"type": "boolean"
807867
},
868+
"haskell.plugin.splice.globalOn": {
869+
"default": true,
870+
"description": "Enables splice plugin",
871+
"scope": "resource",
872+
"type": "boolean"
873+
},
808874
"haskell.plugin.stan.globalOn": {
809875
"default": false,
810876
"description": "Enables stan plugin",

0 commit comments

Comments
 (0)