26 lines
897 B
JavaScript
26 lines
897 B
JavaScript
import js from "@eslint/js";
|
|
import globals from "globals";
|
|
import tseslint from "typescript-eslint";
|
|
import pluginReact from "eslint-plugin-react";
|
|
import { defineConfig } from "eslint/config";
|
|
|
|
|
|
export default defineConfig([
|
|
{ files: ["**/*.{js,mjs,cjs,ts,mts,cts,jsx,tsx}"], plugins: { js }, extends: ["js/recommended"] },
|
|
{ files: ["**/*.{js,mjs,cjs,ts,mts,cts,jsx,tsx}"], languageOptions: { globals: globals.browser } },
|
|
tseslint.configs.recommended,
|
|
pluginReact.configs.flat.recommended,
|
|
{
|
|
files: ["**/*.{js,mjs,cjs,ts,mts,cts,jsx,tsx}"],
|
|
rules: {
|
|
"react/jsx-uses-react": "off",
|
|
"react/react-in-jsx-scope": "off",
|
|
"react/jsx-filename-extension": ["error", { extensions: [".jsx", ".tsx"] }],
|
|
"react/prop-types": "off",
|
|
"react/no-unescaped-entities": "off",
|
|
"react/jsx-no-target-blank": "warn",
|
|
"react/jsx-key": "warn"
|
|
}
|
|
}
|
|
]);
|