import eslint from "@eslint/js"; import tseslint from "typescript-eslint"; import eslintConfigPrettier from "eslint-config-prettier"; export default tseslint.config( eslint.configs.recommended, ...tseslint.configs.recommended, eslintConfigPrettier, { languageOptions: { parserOptions: { projectService: true, tsconfigRootDir: import.meta.dirname, }, }, }, { ignores: ["dist/**", "node_modules/**", "src/vendor/**", "examples/**"], }, { rules: { // Allow unused vars that start with underscore "@typescript-eslint/no-unused-vars": [ "error", { argsIgnorePattern: "^_", varsIgnorePattern: "^_", }, ], // Allow explicit any in some cases (can be tightened later) "@typescript-eslint/no-explicit-any": "warn", }, } );