Bot & Automation
Treding Forex Ai
/root/hermes-projects/Treding Forex Ai
eslint.config.mjs
text
import js from "@eslint/js";
import tseslint from "typescript-eslint";
export default [
{
ignores: [
"dist/**",
"node_modules/**",
"coverage/**",
"data/**",
"mt5-bridge/.venv/**",
"mt5-bridge/logs/**",
"prettier.config.cjs"
]
},
js.configs.recommended,
...tseslint.configs.recommended,
{
files: ["**/*.ts"],
languageOptions: {
parserOptions: {
sourceType: "module"
}
},
rules: {
"@typescript-eslint/no-explicit-any": "error",
"@typescript-eslint/consistent-type-imports": "error"
}
}
];