mirror of https://github.com/langgenius/dify.git
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',
|
|
}),
|
|
},
|
|
})
|