Lou Cyx
Lou Cyx
I already moved the animation to the `:host`, my concern was mainly with "consistency", in the matter that some styles are applied as expected on the `::slotted` elements, while some...
@govis I ended up applying the animation to the host ... the alternative solution is to wrap the `` element with something like a `` or a `` and apply...
I was about to create a similar ticket, returning oc from a promise breaks the promise. Maybe something with a condition like `data instanceof Promise`.
This should solve both #22 and #21. To my credit compared to #22, I used JSDocs with the definitions to make them more clear π
What I ended up doing is kinda similar to your sugestion: ```yml # lefthook.yml pre-push: commands: "git:pre-push": run: $(pwd)/node_modules/.bin/run-s git:pre-push ``` ```json5 // package.json "git:pre-push": "run-s --print-label clean compile lint...
I can try to create a PR here giving your plugin compatibility with ESLint 9, but other than that the consumers of your plugin can't use it in the latest...
PR open [here](https://github.com/JamieMason/eslint-plugin-prefer-arrow-functions/pull/34) βΊοΈ
@JamieMason of course! Take all the time you need! π
@AndreaPontrandolfo I agree with you, as a temporary measure this is what I have in my project and it might help you as well. Create a `plugins.d.ts` in your root...
That's because the function has the type `(): never` while the constant function has the type `() => never`, to fix that you can write something like this: ```typescript const...