You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When setting MemberNames to camelCase, the rule triggers on delegates, where the Invoke member is compiler-generated, and as far as I know, out of the users's control:
Consider changing `Invoke` to camelCase.
Error on line 127 starting at column 33
type Target4<'a, 'b, 'c, 'd> = delegate of string * 'a * 'b * 'c * 'd -> unit
^
See https://fsprojects.github.io/FSharpLint/how-tos/rules/FL0045.html
Repro steps
Please provide the steps required to reproduce the problem
Configure the memberNames.config.naming field to CamelCase
Define a delegate and run linter
Expected behavior
Compiler generated members should not be candidates for lints where they are out of user control
Description
When setting MemberNames to camelCase, the rule triggers on delegates, where the
Invoke
member is compiler-generated, and as far as I know, out of the users's control:Repro steps
Please provide the steps required to reproduce the problem
memberNames.config.naming
field toCamelCase
Expected behavior
Compiler generated members should not be candidates for lints where they are out of user control
Related information
The text was updated successfully, but these errors were encountered: