diff --git a/.miss_hit b/.miss_hit
index f15ccfe29ff4a2e193fb4ae51ca5a7bd1cc3a88d..60282cf32ddc863c0406aba8712e56ade006a5d1 100644
--- a/.miss_hit
+++ b/.miss_hit
@@ -3,5 +3,6 @@
 
 line_length: 100
 regex_function_name: "[a-z]+(_[a-z]+)*"
+regex_parameter_name: "~|([a-z]+(_[a-z]+)*)"
 suppress_rule: "whitespace_comments"
 tab_width: 2
diff --git a/src/Entity.m b/src/Entity.m
index 61294d3f3ebe34d65d83f872cdc8bfe67a9ffeb5..70fba8d8366bbc9437960c142ba7e0e344896699 100644
--- a/src/Entity.m
+++ b/src/Entity.m
@@ -232,7 +232,7 @@ classdef Entity < handle
     end
 
     % Create the errors, warnings, infos
-    function result = create_messages(data, level)
+    function result = create_messages(~, data, level)
       result = cell();
       if isfield(data, level)
         for message = getfield(data, level)