Security analysis tool for EVM bytecode. Supports smart contracts built for Ethereum, Hedera, Quorum, Vechain, Roostock, Tron and other EVM-compatible blockchains.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
mythril/pyproject.toml

15 lines
430 B

[tool.ruff]
target-version = "py37"
[tool.ruff.lint]
fixable = ["ALL"]
# List of rules https://docs.astral.sh/ruff/rules/
select = ["F"]
[tool.ruff.lint.per-file-ignores]
# Fine for __init__.py files:
# * F401: Module imported but unused
# * F403: 'from .module import *'
# (resolvable via __all__ list,
# see https://docs.python.org/3/tutorial/modules.html#importing-from-a-package)
"mythril/**/__init__.py" = ["F401", "F403"]