generate: disable zig fmt
6 files changed, 6 insertions(+), 0 deletions(-)
scripts/_common.zig+1
| ... | ... | @@ -36,6 +36,7 @@ pub fn Main(comptime T: type) type { |
| 36 | 36 | try w.print( |
| 37 | 37 | \\// Based on the source file: {s} |
| 38 | 38 | \\// |
| 39 | \\// zig fmt: off |
| 39 | 40 | \\ |
| 40 | 41 | \\ |
| 41 | 42 | , .{T.source_url}); |
src/arabic_shaping.zig+1
| ... | ... | @@ -3,6 +3,7 @@ |
| 3 | 3 | // |
| 4 | 4 | // Based on the source file: https://unicode.org/Public/13.0.0/ucd/ArabicShaping.txt |
| 5 | 5 | // |
| 6 | // zig fmt: off |
| 6 | 7 | |
| 7 | 8 | pub const Shaping = struct { |
| 8 | 9 | codepoint: u21, |
src/bidi_brackets.zig+1
| ... | ... | @@ -3,6 +3,7 @@ |
| 3 | 3 | // |
| 4 | 4 | // Based on the source file: https://unicode.org/Public/13.0.0/ucd/BidiBrackets.txt |
| 5 | 5 | // |
| 6 | // zig fmt: off |
| 6 | 7 | |
| 7 | 8 | pub const BracketPairing = struct { |
| 8 | 9 | codepoint: u21, |
src/bidi_mirroring.zig+1
| ... | ... | @@ -3,6 +3,7 @@ |
| 3 | 3 | // |
| 4 | 4 | // Based on the source file: https://unicode.org/Public/13.0.0/ucd/BidiMirroring.txt |
| 5 | 5 | // |
| 6 | // zig fmt: off |
| 6 | 7 | |
| 7 | 8 | pub const Mirroring = struct { |
| 8 | 9 | codepoint: u21, |
src/blocks.zig+1
| ... | ... | @@ -3,6 +3,7 @@ |
| 3 | 3 | // |
| 4 | 4 | // Based on the source file: https://unicode.org/Public/13.0.0/ucd/Blocks.txt |
| 5 | 5 | // |
| 6 | // zig fmt: off |
| 6 | 7 | |
| 7 | 8 | pub const Block = struct { |
| 8 | 9 | from: u21, |
src/cjk_radicals.zig+1
| ... | ... | @@ -3,6 +3,7 @@ |
| 3 | 3 | // |
| 4 | 4 | // Based on the source file: https://unicode.org/Public/13.0.0/ucd/CJKRadicals.txt |
| 5 | 5 | // |
| 6 | // zig fmt: off |
| 6 | 7 | |
| 7 | 8 | pub const CJKRadical = struct { |
| 8 | 9 | number: u8, |