From 3fff65b66f70a976cb645a2a310fda9fadb33d86 Mon Sep 17 00:00:00 2001 From: Xurkon Date: Sat, 16 May 2026 07:59:57 -0500 Subject: [PATCH] gitignore: remove Makefile from tracking --- .gitignore | 1 + Makefile | 26 -------------------------- 2 files changed, 1 insertion(+), 26 deletions(-) delete mode 100644 Makefile diff --git a/.gitignore b/.gitignore index 844d2d2..e19192e 100644 --- a/.gitignore +++ b/.gitignore @@ -40,6 +40,7 @@ Tools/ Tests/ tests/ .busted +Makefile selene.toml wow_classic.yml workflow/ diff --git a/Makefile b/Makefile deleted file mode 100644 index 80e6e97..0000000 --- a/Makefile +++ /dev/null @@ -1,26 +0,0 @@ -# Makefile for Questie-X development tasks -# Requires: lua5.1, busted, selene - -BUSTED := busted -SELENE := selene - -.PHONY: test test-verbose lint ci clean - -# Run all Busted unit tests -test: - $(BUSTED) - -# Run tests with verbose output -test-verbose: - $(BUSTED) --verbose - -# Run selene linter with WoW Classic ruleset -lint: - $(SELENE) --config selene.toml . - -# CI: run lint + test -ci: lint test - -# Clean up temporary/generated files -clean: - rm -f luac.out *.bak