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
Describe the bug Show warning where is no any reasone
To Reproduce
// NewFactory - создает фабрику калькуляций func NewFactory(options ICalculationFactoryOptions) *Factory { return &Factory{factoryOptions: options} } var defaultFactory = NewFactory(DefaultFactoryOptions())
Will warn about unconditional-recursive - where is no any reasone to do it
unconditional-recursive
The text was updated successfully, but these errors were encountered:
Hi @comdiv thanks for reporting the issue. I'll try to analyze it ASAP.
Sorry, something went wrong.
I've reproduced the problem and identified the root cause. I'll push a fix in the next days.
fix: unconditional-recursion false positive when the function is call…
0413366
…ed right after its declaration (#1212)
4bd6fba
…ed right after its declaration (#1212) (#1214)
chavacava
Successfully merging a pull request may close this issue.
Describe the bug
Show warning where is no any reasone
To Reproduce
Will warn about
unconditional-recursive
- where is no any reasone to do itThe text was updated successfully, but these errors were encountered: