Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bug(linter) bug in fixer for func-names #5128

Closed
Tracked by #5103
camc314 opened this issue Aug 23, 2024 · 1 comment · Fixed by #5136
Closed
Tracked by #5103

bug(linter) bug in fixer for func-names #5128

camc314 opened this issue Aug 23, 2024 · 1 comment · Fixed by #5136
Labels
C-bug Category - Bug good first issue Experience Level - Good for newcomers

Comments

@camc314
Copy link
Contributor

camc314 commented Aug 23, 2024

bunx oxlint@latest -D func-names --fix <path to file>

input:

const restoreGracefully = function <T>(entries: T[]) { }

output:

const restoreGracefully = function <T> restoreGracefully(entries: T[]) { }

expected output:

const restoreGracefully = function restoreGracefully<T>(entries: T[]) { }
@camc314 camc314 added the C-bug Category - Bug label Aug 23, 2024
@camc314 camc314 mentioned this issue Aug 23, 2024
6 tasks
@Boshen Boshen added the good first issue Experience Level - Good for newcomers label Aug 23, 2024
DonIsaac pushed a commit that referenced this issue Aug 23, 2024
@camc314
Copy link
Contributor Author

camc314 commented Aug 23, 2024

closed by #5128

@camc314 camc314 closed this as completed Aug 23, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
C-bug Category - Bug good first issue Experience Level - Good for newcomers
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants