bulk rename to flupdt, add CLI, add README, add .gitignore

Signed-off-by: ahuston-0 <aliceghuston@gmail.com>
This commit is contained in:
2024-07-29 18:29:54 -04:00
parent adb422829c
commit 18acb7250e
14 changed files with 297 additions and 23 deletions

View File

@ -4,6 +4,9 @@
formatter,
...
}:
let
pkgs = inputs.nixpkgs.legacyPackages.${system};
in
{
pre-commit-check = inputs.pre-commit-hooks.lib.${system}.run {
src = ./.;
@ -43,6 +46,18 @@
# toml hooks
check-toml.enable = true;
# markdown hooks
mdl = {
enable = true;
settings.style =
(pkgs.writeText ".mdl_style.rb" ''
#!/usr/bin/env ruby
all
rule 'MD013', :tables => false
'').outPath;
};
# git hooks
check-merge-conflicts.enable = true;
## prevents committing to main