34 lines
907 B
JavaScript
34 lines
907 B
JavaScript
import eslintReact from "@eslint-react/eslint-plugin";
|
|
import eslintJs from "@eslint/js";
|
|
import { defineConfig } from "eslint/config";
|
|
import prettier from "eslint-config-prettier";
|
|
import globals from "globals";
|
|
import tseslint from "typescript-eslint";
|
|
|
|
export default defineConfig(
|
|
{ ignores: ["dist/**", "node_modules/**", "src-tauri/**"] },
|
|
{
|
|
files: ["**/*.{ts,tsx}"],
|
|
extends: [
|
|
eslintJs.configs.recommended,
|
|
...tseslint.configs.recommended,
|
|
eslintReact.configs["recommended-typescript"],
|
|
],
|
|
languageOptions: {
|
|
globals: globals.browser,
|
|
parserOptions: {
|
|
projectService: true,
|
|
tsconfigRootDir: import.meta.dirname,
|
|
},
|
|
},
|
|
rules: {
|
|
"no-unused-vars": "off",
|
|
"@typescript-eslint/no-unused-vars": [
|
|
"error",
|
|
{ argsIgnorePattern: "^_", varsIgnorePattern: "^_" },
|
|
],
|
|
},
|
|
},
|
|
prettier,
|
|
);
|