elvis_core icon indicating copy to clipboard operation
elvis_core copied to clipboard

New Rule: Parentheses in Macro Definitions

Open elbrujohalcon opened this issue 3 years ago • 0 comments

Ref: WhatsApp/erlfmt#91

  • Omit () in macro names only if they represent constants
%% Bad
-define(NOT_CONSTANT, application:get_env(myapp, key)).
-define(CONSTANT(), 100).
%% Good
-define(NOT_CONSTANT(), application:get_env(myapp, key)).
-define(CONSTANT, 100).

elbrujohalcon avatar Aug 07 '20 10:08 elbrujohalcon