mirror of
https://github.com/langgenius/dify.git
synced 2026-08-30 20:43:55 +08:00
11 lines
248 B
TypeScript
11 lines
248 B
TypeScript
import type { OxlintConfig } from 'vite-plus/lint'
|
|
import { webJsxA11yRules } from '../../../lint.config.ts'
|
|
|
|
export default {
|
|
categories: {
|
|
correctness: 'off',
|
|
},
|
|
plugins: ['jsx-a11y'],
|
|
rules: webJsxA11yRules,
|
|
} satisfies OxlintConfig
|