diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index d644695..1a690fe 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -20,9 +20,16 @@ repos: stages: [commit] - id: prettier - name: Check css, scss, js and ts formatting + name: Check css, scss, js, ts and yaml formatting entry: prettier language: system - files: .*\.(css|scss|js|ts)$ + files: .*\.(css|scss|js|ts|yaml)$ args: [-c] stages: [commit] + + - id: typos + name: Check for typos + entry: typos + language: system + files: .* + stages: [commit] diff --git a/flake.nix b/flake.nix index 7048435..cebca5d 100644 --- a/flake.nix +++ b/flake.nix @@ -45,6 +45,7 @@ pre-commit nixfmt-rfc-style nodePackages.prettier + typos ]; shellHook = '' ${pkgs.pre-commit}/bin/pre-commit install -f