build: remove lint step

This step was unused. It was a format check step, but we instead run zig
fmt --check
This commit is contained in:
Tim Culverhouse 2024-10-30 06:40:04 -05:00
parent 9f1de42e8d
commit e29aca6b70

View file

@ -100,17 +100,6 @@ pub fn build(b: *std.Build) void {
b.installArtifact(tests); b.installArtifact(tests);
tests_step.dependOn(&tests_run.step); tests_step.dependOn(&tests_run.step);
// Lints
const lints_step = b.step("lint", "Run lints");
const lints = b.addFmt(.{
.paths = &.{ "src", "build.zig" },
.check = true,
});
lints_step.dependOn(&lints.step);
b.default_step.dependOn(lints_step);
// Docs // Docs
const docs_step = b.step("docs", "Build the vaxis library docs"); const docs_step = b.step("docs", "Build the vaxis library docs");
const docs_obj = b.addObject(.{ const docs_obj = b.addObject(.{