File tree 3 files changed +27
-2
lines changed
test/testdata/schema/ghc98
3 files changed +27
-2
lines changed Original file line number Diff line number Diff line change @@ -606,7 +606,7 @@ flag hlint
606
606
manual : True
607
607
608
608
common hlint
609
- if flag(hlint) && (impl(ghc < 9.8.0 ) || flag(ignore-plugins-ghc-bounds))
609
+ if flag(hlint)
610
610
build-depends : haskell-language-server :hls-hlint-plugin
611
611
cpp-options : -Dhls_hlint
612
612
@@ -1278,7 +1278,7 @@ flag floskell
1278
1278
manual : True
1279
1279
1280
1280
common floskell
1281
- if flag(floskell) && (impl(ghc < 9.7 ) || flag(ignore-plugins-ghc-bounds))
1281
+ if flag(floskell)
1282
1282
build-depends : haskell-language-server :hls-floskell-plugin
1283
1283
cpp-options : -Dhls_floskell
1284
1284
Original file line number Diff line number Diff line change 73
73
},
74
74
"globalOn" : true
75
75
},
76
+ "hlint" : {
77
+ "codeActionsOn" : true ,
78
+ "config" : {
79
+ "flags" : []
80
+ },
81
+ "diagnosticsOn" : true
82
+ },
76
83
"importLens" : {
77
84
"codeActionsOn" : true ,
78
85
"codeLensOn" : true
Original file line number Diff line number Diff line change 171
171
"scope" : " resource" ,
172
172
"type" : " boolean"
173
173
},
174
+ "haskell.plugin.hlint.codeActionsOn" : {
175
+ "default" : true ,
176
+ "description" : " Enables hlint code actions" ,
177
+ "scope" : " resource" ,
178
+ "type" : " boolean"
179
+ },
180
+ "haskell.plugin.hlint.config.flags" : {
181
+ "default" : [],
182
+ "markdownDescription" : " Flags used by hlint" ,
183
+ "scope" : " resource" ,
184
+ "type" : " array"
185
+ },
186
+ "haskell.plugin.hlint.diagnosticsOn" : {
187
+ "default" : true ,
188
+ "description" : " Enables hlint diagnostics" ,
189
+ "scope" : " resource" ,
190
+ "type" : " boolean"
191
+ },
174
192
"haskell.plugin.importLens.codeActionsOn" : {
175
193
"default" : true ,
176
194
"description" : " Enables importLens code actions" ,
You can’t perform that action at this time.
0 commit comments