Simon Vizzini

Results 11 comments of Simon Vizzini

I can confirm that manually setting up null-ls per your snippet works. I still get the null-ls generator error notification initially once but after that the formatting still works and...

Unfortunately lsp.log and lvim.log doesn't contain anything relevant when I reproduce the problem. I set both lvim and lsp log levels to trace and the lsp.log contains a bunch of...

My use-case is that I have React components which render custom web components. These web components trigger custom events, but unfortunately I can't use `simulate` to trigger custom events. Would...

For me it is still reproducible. I'm working around this issue by setting up my formatters and linters with `null-ls` directly, instead of using Lvims null-ls abstraction (via `lvim.lsp.null-ls`)

I hope this is what you mean. In my Lvim config: ``` local null_ls = require("null-ls") local sources = { null_ls.builtins.formatting.prettierd, null_ls.builtins.formatting.eslint_d, null_ls.builtins.formatting.stylua, null_ls.builtins.diagnostics.eslint_d, null_ls.builtins.code_actions.eslint_d, } null_ls.register({ sources = sources...

I have to add, I don't see the error notification anymore as in the screenshot in the OP. But null-ls formatting still stops working if I try to format a...

We also have performance issues with tslint-loader. Linting is much slower compared to the tslint CLI, even without the ``typeCheck`` option (with ``typeCheck`` it's even slower). Now I wanted to...

For reference, this is the example code I tested this with: ````javascript const linterConfigFile = path.resolve(watchDir, "tslint.json"); const tsConfigFile = path.resolve(watchDir, "tsconfig.json"); // Tried to store program instance here, but...

Ah, I'm sorry, I totally missed the pull request. This is strange, I'm sure @mtraynham has tested this, and I guess it worked for him. And if it works in...

I haven't had much time to investigate this further but I found this interesting note in the gulp-tslint README regarding the [typeCheck feature](https://github.com/panuhorsmalahti/gulp-tslint#type-checked-rules). ```` // NOTE: Ensure 'Linter.createProgram' is called...