├── .envrc ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ ├── custom.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md ├── highqualitybanner.png └── workflows │ ├── ci.yaml │ ├── docker.yaml │ └── update-flake.yaml ├── .gitignore ├── CONTRIBUTING.md ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── flake.lock ├── flake.nix ├── nix ├── docker.nix └── package.nix └── src ├── checks ├── build.rs ├── deadnix.rs ├── hammering.rs ├── mod.rs └── statix.rs ├── main.rs └── tests ├── mod.rs └── passthru.rs /.envrc: -------------------------------------------------------------------------------- 1 | if has nix_direnv_version; then 2 | use flake 3 | fi 4 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IogaMaster/warden/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IogaMaster/warden/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: true 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IogaMaster/warden/HEAD/.github/ISSUE_TEMPLATE/custom.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IogaMaster/warden/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IogaMaster/warden/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/highqualitybanner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IogaMaster/warden/HEAD/.github/highqualitybanner.png -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IogaMaster/warden/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/docker.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IogaMaster/warden/HEAD/.github/workflows/docker.yaml -------------------------------------------------------------------------------- /.github/workflows/update-flake.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IogaMaster/warden/HEAD/.github/workflows/update-flake.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IogaMaster/warden/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IogaMaster/warden/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IogaMaster/warden/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IogaMaster/warden/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IogaMaster/warden/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IogaMaster/warden/HEAD/README.md -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IogaMaster/warden/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IogaMaster/warden/HEAD/flake.nix -------------------------------------------------------------------------------- /nix/docker.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IogaMaster/warden/HEAD/nix/docker.nix -------------------------------------------------------------------------------- /nix/package.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IogaMaster/warden/HEAD/nix/package.nix -------------------------------------------------------------------------------- /src/checks/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IogaMaster/warden/HEAD/src/checks/build.rs -------------------------------------------------------------------------------- /src/checks/deadnix.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IogaMaster/warden/HEAD/src/checks/deadnix.rs -------------------------------------------------------------------------------- /src/checks/hammering.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IogaMaster/warden/HEAD/src/checks/hammering.rs -------------------------------------------------------------------------------- /src/checks/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IogaMaster/warden/HEAD/src/checks/mod.rs -------------------------------------------------------------------------------- /src/checks/statix.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IogaMaster/warden/HEAD/src/checks/statix.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IogaMaster/warden/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/tests/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod passthru; 2 | -------------------------------------------------------------------------------- /src/tests/passthru.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IogaMaster/warden/HEAD/src/tests/passthru.rs --------------------------------------------------------------------------------