-
Notifications
You must be signed in to change notification settings - Fork 56
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
Do not apply atom_naming_convention over function names, only atoms used as atoms #204
Comments
You don't need to work around like that. |
Sure, but I would still be working around the linter in my code where the fault lies somewhere else. |
Yeah. But we can't force our style on other people's code 🤷♂️. Today is otp's zlib. Tomorrow it will be some other library. The best we can do is respect the standard ourselves and ignore the code in our deps. Right? |
Maybe what elvis can do is to ignore atoms that are used as function names for this rule. That would not be a bad idea. |
Yes, my point wasn't that this style should be forced on other people's code, rather that it would be nice if it was smart enough to recognize cases where it's out of your hand. |
Got it! Yeah... Skipping function names would achieve that goal, at least in this context. |
If there's an easy way to list them automatically, sure...
Not sure what the implications of this statement are, but function names come in many forms, in the code:
Though there's no (real) convention I know of, around function names (http://www.erlang.se/doc/programming_rules.shtml#REF17122), the choice that @elbrujohalcon, let me know if you want to discuss this further; I wouldn't mind implementing the exception if that's the conclusion we reach. Or even accept a pull request given pointers to @nixxquality on where this should be changed. |
Hm... wait, I think I see what you mean here, atom_naming_convention is being applied over a function name (which should be Ok). Makes sense, in many cases, for example if the function name is declared first as an atom and then used later, i.e. Mod = zlib,
Fun = inflateInit,
Mod:Fun(Z) In that case, if changes apply (to elvis) we should probably also reconsider working on (maybe a different pull request) module_naming_convention (since that's what lead us to add _SUITE to the default atom_naming_convention, IIRC). |
Yeah… I think that the ideal scenario would have |
But in the case I describe I'm not sure ktn is sending back enough elements for that analysis. Might have to pick this up later for further digging. |
It's a pure semantic discussion, but… In your scenario, I would say that atoms are used as atoms. What you're using as a function call are the variables ;) |
https://erlang.org/doc/man/zlib.html
The functions here are called inflateInit, inflateEnd, et.c. which angers Elvis.
Any thoughts on this? I see this as the current workaround
But I don't like working around linters.
Should atoms from the standard library be exempt?
The text was updated successfully, but these errors were encountered: