mirror of
https://github.com/langchain-ai/react-agent-js.git
synced 2026-06-30 20:18:10 -04:00
15 lines
370 B
TypeScript
15 lines
370 B
TypeScript
import js from "@eslint/js";
|
|
import globals from "globals";
|
|
import tseslint from "typescript-eslint";
|
|
import { defineConfig } from "eslint/config";
|
|
|
|
export default defineConfig([
|
|
{
|
|
files: ["**/*.{js,mjs,cjs,ts,mts,cts}"],
|
|
plugins: { js },
|
|
extends: ["js/recommended"],
|
|
languageOptions: { globals: globals.node },
|
|
},
|
|
tseslint.configs.recommended
|
|
]);
|