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:
parent
9f1de42e8d
commit
e29aca6b70
1 changed files with 0 additions and 11 deletions
11
build.zig
11
build.zig
|
@ -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(.{
|
||||
|
|
Loading…
Add table
Reference in a new issue