File tree 2 files changed +12
-1
lines changed
2 files changed +12
-1
lines changed Original file line number Diff line number Diff line change
1
+ ### 0.0.7
2
+ ** BREAKING CHANGE!**
3
+ ` ziglint ` now supports specifying the severity of faults that a rule produces.
4
+ The ` ziglint.json ` format has been changed to accomodate this.
5
+
6
+ Other changes include:
7
+ - A ` banned_comment_phrases ` rule allowing the linter to fault certain phrases in comments.
8
+ - A ` file_as_struct ` rule enforcing the file capitalization convention for files with top-level fields.
9
+ - A ` dupe_import ` rule checking for when a file is needlessly imported multiple times.
10
+ - The unfinished const pointer enforcement rule has been removed for now.
11
+
1
12
### 0.0.6
2
13
- ` ziglint ` now utilizes exit codes.
3
14
- Logging verbosity has been decreased.
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ const Version = @import("./semver.zig").Version;
15
15
const ZIGLINT_VERSION = Version {
16
16
.major = 0 ,
17
17
.minor = 0 ,
18
- .patch = 6 ,
18
+ .patch = 7 ,
19
19
.prerelease = null ,
20
20
.build_metadata = @import ("comptime_build" ).GIT_COMMIT_HASH ,
21
21
};
You can’t perform that action at this time.
0 commit comments