Linda_pp

Results 470 comments of Linda_pp

Decorator is a feature [proposed to ECMAScript](https://github.com/tc39/proposal-decorators), but it's still on stage2 and not implemented in V8. TypeScript offers to transpile decorators via `--experimentalDecorators` compiler flag. So the decorator is...

Thank you for reporting this with details. I'll look into this.

GitHub Actions workflow page provides artifacts, but also the release page still seems to provide packages. For example, below two links are both available to download Neovim package for 64bit...

> Is there a way that I can still support v0.2.0? How do you make Neovim v0.2.0 work on Linux? As you said, v0.3.2 is the first version which supports...

Hmm... What is the purpose of testing Neovim 0.2 on Linux? Since it does not support Linux, no user uses Neovim 0.2 on Linux. I don't think testing such a...

Oh, OK, I misunderstood. Currently this action does not have capability to build Neovim from source.

> However, the description is optional. Can you show a link to official document?

Because properties in GitHub Actions workflows are case-insensitive, actionlint converts all properties into lowercase before checks. > Or should we be avoiding camel case altogether? You don't need to avoid...

References: - Changelog: https://github.blog/changelog/2021-08-25-github-actions-reduce-duplication-with-action-composition/ - Document: https://docs.github.com/en/actions/creating-actions/creating-a-composite-action

How about the following? ```sh actionlint ./your/workflows/dir/**/*.yml ```