feat: check for typos

This commit is contained in:
Nydragon 2024-05-27 22:16:38 +09:00
parent e39c52216a
commit 50ba85401d
No known key found for this signature in database
GPG key ID: 14AA30A865EA1209
2 changed files with 10 additions and 2 deletions

View file

@ -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]

View file

@ -45,6 +45,7 @@
pre-commit
nixfmt-rfc-style
nodePackages.prettier
typos
];
shellHook = ''
${pkgs.pre-commit}/bin/pre-commit install -f