Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
160 changes: 0 additions & 160 deletions .eslintrc.json

This file was deleted.

22 changes: 0 additions & 22 deletions .github/workflows/main.yaml

This file was deleted.

34 changes: 34 additions & 0 deletions .github/workflows/pr-review.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: PR Review Reminder

on:
pull_request:
types: [opened]

jobs:
reminder:
runs-on: ubuntu-latest

permissions:
issues: write
pull-requests: write

steps:
- name: Add review comment
uses: actions/github-script@v7
with:
script: |
github.rest.issues.createComment({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: context.issue.number,
body: `🧪 **Code Review Checklist**

Antes de hacer merge, revisa:

- [ ] He revisado mi propio código
- [ ] No hay errores evidentes
- [ ] He probado los cambios
- [ ] El código sigue buenas prácticas
- [ ] No introduzco bugs ni deuda técnica

💡 Recuerda: un buen PR = menos bugs en producción 🚀`})
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ dist
dist-ssr
*.local
package-lock.json
yarn.lock

# Editor directories and files
.vscode/*
Expand Down
4 changes: 2 additions & 2 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"

npx lint-staged
npm run type-check
pnpm exec lint-staged
pnpm run type-check
4 changes: 2 additions & 2 deletions .husky/pre-push
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"

npm run lint
npm run build
pnpm run lint
pnpm run build
4 changes: 2 additions & 2 deletions .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
*.min.js
*.min.css

# Otros
# Lockfiles
package-lock.json
yarn.lock
*.md
pnpm-lock.yaml
Loading
Loading