fix: hide 5740 and 5667 errors

This commit is contained in:
rymnc 2023-07-31 20:16:20 +05:30
parent 67d3bcfda1
commit 0a9fdc4fa8
No known key found for this signature in database
GPG Key ID: AAA088D5C68ECD34

View File

@ -3,4 +3,8 @@ src = 'contracts'
out = 'out'
libs = ['node_modules', 'lib']
test = 'test'
cache_path = 'cache_forge'
cache_path = 'cache_forge'
# 5667: Unused function parameter. Remove or comment out the variable name to silence this warning.
# 5740: Unreachable code.
ignored_error_codes = [5667, 5740]