first commit
This commit is contained in:
31
eslint.config.mjs
Normal file
31
eslint.config.mjs
Normal file
@ -0,0 +1,31 @@
|
||||
import { fixupConfigRules } from "@eslint/compat";
|
||||
import js from "@eslint/js";
|
||||
import reactHooks from "eslint-plugin-react-hooks";
|
||||
import reactJsx from "eslint-plugin-react/configs/jsx-runtime.js";
|
||||
import react from "eslint-plugin-react/configs/recommended.js";
|
||||
import globals from "globals";
|
||||
import ts from "typescript-eslint";
|
||||
|
||||
export default [
|
||||
{ languageOptions: { globals: globals.browser } },
|
||||
js.configs.recommended,
|
||||
...ts.configs.recommended,
|
||||
...fixupConfigRules([
|
||||
{
|
||||
...react,
|
||||
settings: {
|
||||
react: { version: "detect" },
|
||||
},
|
||||
},
|
||||
reactJsx,
|
||||
]),
|
||||
{
|
||||
plugins: {
|
||||
"react-hooks": reactHooks,
|
||||
},
|
||||
rules: {
|
||||
...reactHooks.configs.recommended.rules,
|
||||
},
|
||||
},
|
||||
{ ignores: ["dist/"] },
|
||||
];
|
Reference in New Issue
Block a user