this repo has no description
13
fork

Configure Feed

Select the types of activity you want to include in your feed.

build: remove lint step

This step was unused. It was a format check step, but we instead run zig
fmt --check

-11
-11
build.zig
··· 100 100 b.installArtifact(tests); 101 101 tests_step.dependOn(&tests_run.step); 102 102 103 - // Lints 104 - const lints_step = b.step("lint", "Run lints"); 105 - 106 - const lints = b.addFmt(.{ 107 - .paths = &.{ "src", "build.zig" }, 108 - .check = true, 109 - }); 110 - 111 - lints_step.dependOn(&lints.step); 112 - b.default_step.dependOn(lints_step); 113 - 114 103 // Docs 115 104 const docs_step = b.step("docs", "Build the vaxis library docs"); 116 105 const docs_obj = b.addObject(.{