Skip to content

Commit

Permalink
build: remove lint step
Browse files Browse the repository at this point in the history
This step was unused. It was a format check step, but we instead run zig
fmt --check
  • Loading branch information
rockorager committed Oct 30, 2024
1 parent 9f1de42 commit e29aca6
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions build.zig
Original file line number Diff line number Diff line change
Expand Up @@ -100,17 +100,6 @@ pub fn build(b: *std.Build) void {
b.installArtifact(tests);
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
const docs_step = b.step("docs", "Build the vaxis library docs");
const docs_obj = b.addObject(.{
Expand Down

0 comments on commit e29aca6

Please sign in to comment.