diff --git a/.husky/pre-commit b/.husky/pre-commit index 6cc60ec..0987320 100755 --- a/.husky/pre-commit +++ b/.husky/pre-commit @@ -4,6 +4,9 @@ set -e +echo "▎ pre-commit: lint" +pnpm lint + echo "▎ pre-commit: typecheck" pnpm -r typecheck diff --git a/eslint.config.js b/eslint.config.js index 811a7b6..abf5eef 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -13,7 +13,9 @@ export default [ '**/dist/**', '**/dist-electron/**', '**/node_modules/**', + '**/target/**', // Rust/Cargo build output (generated JS in src-tauri/target) '**/.tsbuildinfo', + 'release-artifacts/**', 'apps/desktop/electron/**', // requires electron types — pending M6-rest ], },