mirror of
https://github.com/open-webui/docs
synced 2025-05-18 10:22:29 +00:00
17 lines
463 B
JavaScript
17 lines
463 B
JavaScript
// @ts-check
|
|
|
|
import eslint from "@eslint/js";
|
|
import tseslint from "typescript-eslint";
|
|
// import docusaurus from '@docusaurus/eslint-plugin'; // https://github.com/facebook/docusaurus/issues/10490
|
|
|
|
export default [
|
|
eslint.configs.recommended,
|
|
...tseslint.configs.recommended,
|
|
// docusaurus.configs.recommended, // https://github.com/facebook/docusaurus/issues/10490
|
|
{
|
|
files: ["*.ts", "*.tsx", "*.js", "*.mjs", "*.cjs"],
|
|
ignores: [],
|
|
rules: {},
|
|
},
|
|
];
|