Skip to content
This repository was archived by the owner on Jul 29, 2026. It is now read-only.
Draft
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
6 changes: 3 additions & 3 deletions .github/workflows/pre-commit_hooks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:
- name: checkout
uses: actions/checkout@v2

- name: set up python 3.9
uses: actions/setup-python@v1
- name: set up python 3.12
uses: actions/setup-python@v5
with:
python-version: 3.9
python-version: "3.12"

- name: install pre-commit
run: |
Expand Down
16 changes: 16 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import { defineConfig, globalIgnores } from 'eslint/config'
import nextVitals from 'eslint-config-next/core-web-vitals'

const eslintConfig = defineConfig([
...nextVitals,
{
rules: {
// Experimental React Compiler rules — too strict for standard async data-fetching patterns
'react-hooks/set-state-in-effect': 'off',
'react-hooks/preserve-manual-memoization': 'off',
},
},
globalIgnores(['.next/**', 'out/**', 'build/**', 'next-env.d.ts']),
])

export default eslintConfig
2 changes: 1 addition & 1 deletion mentoria-crm/src/components/kanban/kanban-column.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ export function KanbanColumn({ stage, leads, onRefresh }: KanbanColumnProps) {
<Dialog open={showCreate} onOpenChange={setShowCreate}>
<DialogContent onClose={() => setShowCreate(false)}>
<DialogHeader>
<DialogTitle>Novo Lead em "{stage.name}"</DialogTitle>
<DialogTitle>Novo Lead em &ldquo;{stage.name}&rdquo;</DialogTitle>
</DialogHeader>
<LeadForm
initialStageId={stage.id}
Expand Down
Loading
Loading