From 61bfab3918b439ba9ae9fe3767e4bedfb3471338 Mon Sep 17 00:00:00 2001 From: Luke Fishman Date: Wed, 29 Jan 2025 13:15:39 +0700 Subject: [PATCH] Update README.md use of direct module ref doesnt work : elixir version: `elixir -v Erlang/OTP 27 [erts-15.0.1] [source] [64-bit] [smp:16:16] [ds:16:16:10] [async-threads:1] [jit:ns] Elixir 1.17.2 (compiled with Erlang/OTP 27) ` instead i needed to use atoms Signed-off-by: Luke Fishman --- README.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 5093387..c1f70ff 100644 --- a/README.md +++ b/README.md @@ -80,7 +80,14 @@ The plugin supports the following configuration options in the `meandro` section def meandro_config() do %{ - rules: [Meandro.Rule.UnnecessaryFunctionArguments], + rules: [ + :unnecessary_function_arguments, + :unused_callbacks, + :unused_configuration_options, + :unused_record_fields, + :unused_macros, + :unused_struct_fields + ], parsing: :sequential, ignore: ["test/example.ex"] }