mirror of
https://github.com/langgenius/dify.git
synced 2026-01-30 15:42:07 +08:00
Co-authored-by: Johnson Chu <johnsoncodehk@gmail.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
12 lines
295 B
TypeScript
12 lines
295 B
TypeScript
import { defineConfig, importESLintRules } from '@tsslint/config'
|
|
|
|
// Run `npx tsslint-docgen` to generate documentation for the configured rules.
|
|
|
|
export default defineConfig({
|
|
rules: {
|
|
...await importESLintRules({
|
|
'react-x/no-leaked-conditional-rendering': 'warn',
|
|
}),
|
|
},
|
|
})
|