43 lines
1.1 KiB
JavaScript
43 lines
1.1 KiB
JavaScript
import eslint from "@eslint/js";
|
|
import { defineConfig, globalIgnores } from "eslint/config";
|
|
import eslintConfigPrettier from "eslint-config-prettier/flat";
|
|
import tseslint from "typescript-eslint";
|
|
import reactHooks from "eslint-plugin-react-hooks";
|
|
import reactRefresh from "eslint-plugin-react-refresh";
|
|
import pluginRouter from "@tanstack/eslint-plugin-router";
|
|
|
|
export default defineConfig([
|
|
globalIgnores([
|
|
"**/dist/**",
|
|
"node_modules/",
|
|
"eslint.config.mjs",
|
|
"**/*.config.ts",
|
|
"routeTree.gen.ts",
|
|
]),
|
|
|
|
eslint.configs.recommended,
|
|
tseslint.configs.recommendedTypeChecked,
|
|
eslintConfigPrettier,
|
|
|
|
{
|
|
languageOptions: {
|
|
parserOptions: {
|
|
projectService: true,
|
|
tsconfigRootDir: import.meta.dirname,
|
|
},
|
|
},
|
|
},
|
|
|
|
{
|
|
files: ["apps/web/**/*.{ts,tsx}"],
|
|
extends: [
|
|
...pluginRouter.configs["flat/recommended"],
|
|
reactHooks.configs.flat.recommended,
|
|
reactRefresh.configs.vite,
|
|
],
|
|
},
|
|
{
|
|
files: ["apps/web/src/routes/**/*.{ts,tsx}"],
|
|
rules: { "react-refresh/only-export-components": "off" },
|
|
},
|
|
]);
|