diff --git a/makefile b/makefile index c2dc45f..e79be09 100644 --- a/makefile +++ b/makefile @@ -178,3 +178,7 @@ fmt-check: ## Check code formatting lint: ## Run solhint linter @echo "$(BLUE)🔍 Running linter...$(RESET)" npx solhint 'src/**/*.sol' 'test/**/*.sol' 'script/**/*.sol' + +analyze: ## Run slither static analysis + @echo "$(BLUE)🔬 Running static analysis...$(RESET)" + slither src/ \ No newline at end of file