Browse Source

chore: enable Solhint rule "named-parameters-mapping"

chore: delete Solhint rule "reason-string"
Paul Razvan Berg 2 years ago
parent
commit
99e16d8af1
1 changed files with 2 additions and 2 deletions
  1. 2 2
      .solhint.json

+ 2 - 2
.solhint.json

@@ -6,13 +6,13 @@
     "compiler-version": ["error", ">=0.8.4"],
     "func-visibility": ["error", { "ignoreConstructors": true }],
     "max-line-length": ["error", 120],
+    "named-parameters-mapping": "warn",
     "not-rely-on-time": "off",
     "prettier/prettier": [
       "error",
       {
         "endOfLine": "auto"
       }
-    ],
-    "reason-string": ["warn", { "maxLength": 64 }]
+    ]
   }
 }