mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-09-21 21:50:49 +02:00
🧹 chore: Update ESLint rules for React hooks (#6685)
This commit is contained in:
parent
d8337e00d2
commit
cfa44de1c9
1 changed files with 6 additions and 4 deletions
|
@ -286,10 +286,12 @@ export default [
|
|||
rules: {
|
||||
// i18n
|
||||
'i18next/no-literal-string': [
|
||||
'error', {
|
||||
'error',
|
||||
{
|
||||
mode: 'jsx-text-only',
|
||||
'should-validate-template': true,
|
||||
}],
|
||||
},
|
||||
],
|
||||
//
|
||||
'@typescript-eslint/no-unused-expressions': 'off',
|
||||
'@typescript-eslint/no-unused-vars': 'off',
|
||||
|
@ -299,8 +301,8 @@ export default [
|
|||
'@typescript-eslint/ban-ts-comment': 'off',
|
||||
// React
|
||||
'react/no-unknown-property': 'warn',
|
||||
'react-hooks/rules-of-hooks': 'off',
|
||||
'react-hooks/exhaustive-deps': 'off',
|
||||
'react-hooks/rules-of-hooks': 'error',
|
||||
'react-hooks/exhaustive-deps': 'warn',
|
||||
// General
|
||||
'no-constant-binary-expression': 'off',
|
||||
'import/no-cycle': 'off',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue