diff --git a/Makefile b/Makefile deleted file mode 100644 index 5e176b8f47..0000000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -test: - @cargo test --all -.PHONY: test - -format: - @rustup component add rustfmt 2> /dev/null - @cargo fmt -.PHONY: format - -format-check: - @rustup component add rustfmt 2> /dev/null - @cargo fmt -- --check -.PHONY: format-check - -lint: - @rustup component add clippy 2> /dev/null - @cargo clippy --tests -- -D clippy::all -.PHONY: lint - -check: lint format-check -.PHONY: check