├── .gitattributes ├── .github └── workflows │ ├── ci.yaml │ └── release.yaml ├── .gitignore ├── LICENSE ├── README.md └── src ├── cli.zon ├── liza.zig ├── main.zig └── templates ├── .forgejo └── workflows │ ├── cd.yaml │ └── ci.yaml ├── .gitattributes ├── .github └── workflows │ ├── cd.yaml │ ├── ci.yaml │ └── release.yaml ├── .gitignore ├── .vale.ini ├── .woodpecker ├── cd.yaml ├── ci.yaml └── release.yaml ├── LICENSE ├── bld ├── README.md ├── build.zig └── build.zig.zon ├── exe ├── README.md ├── build.zig ├── build.zig.zon └── src │ ├── $p.zig │ ├── cli.zon │ └── main.zig ├── lib ├── README.md ├── build.zig ├── build.zig.zon ├── examples │ ├── example1 │ │ └── main.zig │ └── example2 │ │ └── main.zig └── src │ ├── $p.zig │ └── root.zig ├── styles └── config │ └── vocabularies │ └── $p │ └── accept.txt └── typos.toml /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorush/liza/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorush/liza/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorush/liza/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorush/liza/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorush/liza/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorush/liza/HEAD/README.md -------------------------------------------------------------------------------- /src/cli.zon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorush/liza/HEAD/src/cli.zon -------------------------------------------------------------------------------- /src/liza.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorush/liza/HEAD/src/liza.zig -------------------------------------------------------------------------------- /src/main.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorush/liza/HEAD/src/main.zig -------------------------------------------------------------------------------- /src/templates/.forgejo/workflows/cd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorush/liza/HEAD/src/templates/.forgejo/workflows/cd.yaml -------------------------------------------------------------------------------- /src/templates/.forgejo/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorush/liza/HEAD/src/templates/.forgejo/workflows/ci.yaml -------------------------------------------------------------------------------- /src/templates/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorush/liza/HEAD/src/templates/.gitattributes -------------------------------------------------------------------------------- /src/templates/.github/workflows/cd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorush/liza/HEAD/src/templates/.github/workflows/cd.yaml -------------------------------------------------------------------------------- /src/templates/.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorush/liza/HEAD/src/templates/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /src/templates/.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorush/liza/HEAD/src/templates/.github/workflows/release.yaml -------------------------------------------------------------------------------- /src/templates/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorush/liza/HEAD/src/templates/.gitignore -------------------------------------------------------------------------------- /src/templates/.vale.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorush/liza/HEAD/src/templates/.vale.ini -------------------------------------------------------------------------------- /src/templates/.woodpecker/cd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorush/liza/HEAD/src/templates/.woodpecker/cd.yaml -------------------------------------------------------------------------------- /src/templates/.woodpecker/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorush/liza/HEAD/src/templates/.woodpecker/ci.yaml -------------------------------------------------------------------------------- /src/templates/.woodpecker/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorush/liza/HEAD/src/templates/.woodpecker/release.yaml -------------------------------------------------------------------------------- /src/templates/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorush/liza/HEAD/src/templates/LICENSE -------------------------------------------------------------------------------- /src/templates/bld/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorush/liza/HEAD/src/templates/bld/README.md -------------------------------------------------------------------------------- /src/templates/bld/build.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorush/liza/HEAD/src/templates/bld/build.zig -------------------------------------------------------------------------------- /src/templates/bld/build.zig.zon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorush/liza/HEAD/src/templates/bld/build.zig.zon -------------------------------------------------------------------------------- /src/templates/exe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorush/liza/HEAD/src/templates/exe/README.md -------------------------------------------------------------------------------- /src/templates/exe/build.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorush/liza/HEAD/src/templates/exe/build.zig -------------------------------------------------------------------------------- /src/templates/exe/build.zig.zon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorush/liza/HEAD/src/templates/exe/build.zig.zon -------------------------------------------------------------------------------- /src/templates/exe/src/$p.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorush/liza/HEAD/src/templates/exe/src/$p.zig -------------------------------------------------------------------------------- /src/templates/exe/src/cli.zon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorush/liza/HEAD/src/templates/exe/src/cli.zon -------------------------------------------------------------------------------- /src/templates/exe/src/main.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorush/liza/HEAD/src/templates/exe/src/main.zig -------------------------------------------------------------------------------- /src/templates/lib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorush/liza/HEAD/src/templates/lib/README.md -------------------------------------------------------------------------------- /src/templates/lib/build.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorush/liza/HEAD/src/templates/lib/build.zig -------------------------------------------------------------------------------- /src/templates/lib/build.zig.zon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorush/liza/HEAD/src/templates/lib/build.zig.zon -------------------------------------------------------------------------------- /src/templates/lib/examples/example1/main.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorush/liza/HEAD/src/templates/lib/examples/example1/main.zig -------------------------------------------------------------------------------- /src/templates/lib/examples/example2/main.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorush/liza/HEAD/src/templates/lib/examples/example2/main.zig -------------------------------------------------------------------------------- /src/templates/lib/src/$p.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorush/liza/HEAD/src/templates/lib/src/$p.zig -------------------------------------------------------------------------------- /src/templates/lib/src/root.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorush/liza/HEAD/src/templates/lib/src/root.zig -------------------------------------------------------------------------------- /src/templates/styles/config/vocabularies/$p/accept.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/templates/typos.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorush/liza/HEAD/src/templates/typos.toml --------------------------------------------------------------------------------