aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/eslint.config.js
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/eslint.config.js')
-rw-r--r--frontend/eslint.config.js46
1 files changed, 23 insertions, 23 deletions
diff --git a/frontend/eslint.config.js b/frontend/eslint.config.js
index 900096f..bd43dfa 100644
--- a/frontend/eslint.config.js
+++ b/frontend/eslint.config.js
@@ -7,27 +7,27 @@ import globals from "globals";
import ts from "typescript-eslint";
export default defineConfig(
- globalIgnores(["node_modules/", "dist/"]),
- js.configs.recommended,
- ts.configs.recommended,
- react.configs.flat.recommended,
- react.configs.flat["jsx-runtime"],
- reactHooks.configs.flat["recommended-latest"],
- jsxA11y.flatConfigs.recommended,
- {
- languageOptions: {
- globals: {
- ...globals.browser,
- ...globals.node,
- },
- },
- },
- {
- settings: {
- react: {
- version: "detect",
- },
- linkComponents: [{ name: "Link", linkAttribute: "to" }],
- },
- },
+ globalIgnores(["node_modules/", "dist/"]),
+ js.configs.recommended,
+ ts.configs.recommended,
+ react.configs.flat.recommended,
+ react.configs.flat["jsx-runtime"],
+ reactHooks.configs.flat["recommended-latest"],
+ jsxA11y.flatConfigs.recommended,
+ {
+ languageOptions: {
+ globals: {
+ ...globals.browser,
+ ...globals.node,
+ },
+ },
+ },
+ {
+ settings: {
+ react: {
+ version: "detect",
+ },
+ linkComponents: [{ name: "Link", linkAttribute: "to" }],
+ },
+ },
);