aboutsummaryrefslogtreecommitdiffstats
path: root/src/packages/react/eslint.config.mjs
diff options
context:
space:
mode:
authorMatthew Strapp <matt@mattstrapp.net>2024-11-01 10:16:44 -0500
committerGitHub <noreply@github.com>2024-11-01 10:16:44 -0500
commit9c3cef2cda489501a177c34ebe47951321284463 (patch)
treea6b45cdef7acde058ee033c386b93fa819e15c36 /src/packages/react/eslint.config.mjs
parentbadge bleach (diff)
downloadlocusts-9c3cef2cda489501a177c34ebe47951321284463.tar
locusts-9c3cef2cda489501a177c34ebe47951321284463.tar.gz
locusts-9c3cef2cda489501a177c34ebe47951321284463.tar.bz2
locusts-9c3cef2cda489501a177c34ebe47951321284463.tar.lz
locusts-9c3cef2cda489501a177c34ebe47951321284463.tar.xz
locusts-9c3cef2cda489501a177c34ebe47951321284463.tar.zst
locusts-9c3cef2cda489501a177c34ebe47951321284463.zip
feat: Add React (#38)
* feat: Add React Closes #35 Signed-off-by: Matt Strapp <matt@mattstrapp.net> * lint Signed-off-by: Matt Strapp <matt@mattstrapp.net> * docs Signed-off-by: Matt Strapp <matt@mattstrapp.net> * lint Signed-off-by: Matt Strapp <matt@mattstrapp.net> * add keywords Signed-off-by: Matt Strapp <matt@mattstrapp.net> --------- Signed-off-by: Matt Strapp <matt@mattstrapp.net>
Diffstat (limited to '')
-rw-r--r--src/packages/react/eslint.config.mjs33
1 files changed, 33 insertions, 0 deletions
diff --git a/src/packages/react/eslint.config.mjs b/src/packages/react/eslint.config.mjs
new file mode 100644
index 0000000..f49f020
--- /dev/null
+++ b/src/packages/react/eslint.config.mjs
@@ -0,0 +1,33 @@
+import library from "@repo/eslint-config/eslint.library.config.js";
+
+import globals from "globals";
+import react from "eslint-plugin-react";
+import reactHooks from "eslint-plugin-react-hooks";
+import reactRefresh from "eslint-plugin-react-refresh";
+import tseslint from "typescript-eslint";
+
+export default tseslint.config(
+ { ignores: ["dist"] },
+ {
+ extends: [...library],
+ files: ["**/*.{ts,tsx}"],
+ languageOptions: {
+ ecmaVersion: 2020,
+ globals: globals.browser,
+ },
+ plugins: {
+ "react-hooks": reactHooks,
+ "react-refresh": reactRefresh,
+ react,
+ },
+ rules: {
+ ...reactHooks.configs.recommended.rules,
+ "react-refresh/only-export-components": [
+ "warn",
+ { allowConstantExport: true },
+ ],
+ ...react.configs.recommended.rules,
+ ...react.configs["jsx-runtime"].rules,
+ },
+ },
+);