├── .envrc ├── .github └── workflows │ ├── dependabot-post.yml │ └── release.yml ├── .gitignore ├── .releaserc.yaml ├── LICENSE ├── README.md ├── commitlint.config.js ├── flake.lock ├── flake.nix ├── garnix.yaml ├── git-format-staged ├── no-main.js ├── package.json ├── packages └── git-format-staged.nix ├── test ├── git-format-staged_test.ts ├── helpers │ └── git.ts └── test.nix └── tsconfig.json /.envrc: -------------------------------------------------------------------------------- 1 | use flake 2 | -------------------------------------------------------------------------------- /.github/workflows/dependabot-post.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hallettj/git-format-staged/HEAD/.github/workflows/dependabot-post.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hallettj/git-format-staged/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hallettj/git-format-staged/HEAD/.gitignore -------------------------------------------------------------------------------- /.releaserc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hallettj/git-format-staged/HEAD/.releaserc.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hallettj/git-format-staged/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hallettj/git-format-staged/HEAD/README.md -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hallettj/git-format-staged/HEAD/commitlint.config.js -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hallettj/git-format-staged/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hallettj/git-format-staged/HEAD/flake.nix -------------------------------------------------------------------------------- /garnix.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hallettj/git-format-staged/HEAD/garnix.yaml -------------------------------------------------------------------------------- /git-format-staged: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hallettj/git-format-staged/HEAD/git-format-staged -------------------------------------------------------------------------------- /no-main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hallettj/git-format-staged/HEAD/no-main.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hallettj/git-format-staged/HEAD/package.json -------------------------------------------------------------------------------- /packages/git-format-staged.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hallettj/git-format-staged/HEAD/packages/git-format-staged.nix -------------------------------------------------------------------------------- /test/git-format-staged_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hallettj/git-format-staged/HEAD/test/git-format-staged_test.ts -------------------------------------------------------------------------------- /test/helpers/git.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hallettj/git-format-staged/HEAD/test/helpers/git.ts -------------------------------------------------------------------------------- /test/test.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hallettj/git-format-staged/HEAD/test/test.nix -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hallettj/git-format-staged/HEAD/tsconfig.json --------------------------------------------------------------------------------