We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
func-names
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[]) { }
The text was updated successfully, but these errors were encountered:
fix(linter) fix bug in fixer for func-name,closes #5128
func-name
f2659e5
4293fa7
fix(linter) fix bug in fixer for func-name (#5136)
56a68f5
closes #5128
closed by #5128
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
input:
output:
expected output:
The text was updated successfully, but these errors were encountered: