mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-07-25 17:18:11 +00:00
15 lines
353 B
JavaScript
15 lines
353 B
JavaScript
import shared from '../eslint.config.shared.mjs'
|
|
|
|
export default [
|
|
...shared,
|
|
{
|
|
files: ['packages/hermes-ink/**/*.{ts,tsx}'],
|
|
rules: {
|
|
'@typescript-eslint/consistent-type-imports': 'off',
|
|
'no-constant-condition': 'off',
|
|
'no-empty': 'off',
|
|
'no-redeclare': 'off',
|
|
'react-hooks/exhaustive-deps': 'off'
|
|
}
|
|
}
|
|
]
|