AoMe · 青目

Results 57 comments of AoMe · 青目

> @AlejandroSuero mira este PR, #835 , pero los previews no se pueden ver y están fallando :c, sabes que puede ser? Lo de las preview, supongo que @midudev las...

Hello @sumit96367 and everyone else who has this problem, I've started with react native through JavaScriptMastery this week and I've been getting the same error. And here is my solution....

@Zeioth according to the documentation, in the [excluding files section](https://kampfkarren.github.io/selene/usage/configuration.html#excluding-files-from-being-linted) this is how it is supposed to work. I'm not planning on mixing them (in the minimal I only use...

Project tree: ```txt  .git/  .github/  .gitignore  .luacheckrc  .luarc.json  .markdownlint.json  .yamllint.yml  colorscheme-installer-scm-1.rockspec  contrib/  doc/  LICENSE  lua/  luacov.stats.out ...

@barrett-ruth thanks for looking into it. I think the `kmhofmann` is not the right selene, at least it's last update was 6 years ago, https://github.com/Kampfkarren/selene I think this is the...

@mochaaP I have this action that I updated it to work with Node20. In case you want to give it a try. - https://github.com/AlejandroSuero/selene-linter-action

@errael I am not too familiar with the codebase itself but I can solve some of the questions To run test: - `make test` see [Makefile](https://github.com/nvim-lua/plenary.nvim/blob/master/Makefile) if you want to...

@errael to test single files you can change or create a target on the Makefile, the `PlenaryBustedDirectory` with `PlenaryTestFile` as indicated in the reference `plenary.test_harness` that I linked before. I...

@errael The principal issue I see is that `async()` is not defined (it doesn't exists), so does `timer` and `done`. In my case, `scandir_spec.lua` doesn't fail. Here is the error...

You can use either [`vim.defer_fn` or `vim.schedule_wrap`](https://neovim.io/doc/user/lua.html#vim.uv) or [`require "plenary.job"`](https://github.com/nvim-lua/plenary.nvim/blob/master/lua/plenary/job.lua) and make use of [`Job:new`](https://github.com/nvim-lua/plenary.nvim/blob/master/lua/plenary/job.lua#L83-L170). Some examples in [`async_testing_spec`](https://github.com/nvim-lua/plenary.nvim/blob/master/tests/plenary/async_testing_spec.lua). Also in [`tests/plenary/async/async_spec.lua`](https://github.com/nvim-lua/plenary.nvim/blob/master/tests/plenary/async/async_spec.lua) you can see how to use `"plenary.async".tests.add_to_env()` to...