2025-04-04 10:53:50 +00:00
|
|
|
import { config } from '@fisch0920/config/eslint'
|
2025-04-21 21:06:55 +00:00
|
|
|
import drizzle from 'eslint-plugin-drizzle'
|
2025-04-04 10:53:50 +00:00
|
|
|
|
2025-04-21 21:06:55 +00:00
|
|
|
export default [
|
|
|
|
...config,
|
|
|
|
{
|
|
|
|
files: ['**/*.ts', '**/*.tsx'],
|
2025-05-14 12:52:25 +00:00
|
|
|
ignores: ['**/out/**'],
|
2025-04-21 21:06:55 +00:00
|
|
|
plugins: {
|
|
|
|
drizzle
|
|
|
|
},
|
|
|
|
rules: {
|
2025-05-15 11:03:59 +00:00
|
|
|
...drizzle.configs.recommended.rules,
|
2025-05-18 10:58:51 +00:00
|
|
|
'no-console': 'error',
|
|
|
|
'unicorn/no-array-reduce': 'off'
|
2025-04-21 21:06:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|