@@ -100,7 +100,6 @@ export default defineConfig([
100100 "@typescript-eslint/restrict-plus-operands" : "warn" ,
101101 "@typescript-eslint/restrict-template-expressions" : "warn" ,
102102 "@typescript-eslint/unbound-method" : "warn" ,
103- "import/consistent-type-specifier-style" : [ "error" , "prefer-top-level" ] ,
104103 "jsdoc/require-jsdoc" : "off" ,
105104 "jsx-a11y/alt-text" : "warn" ,
106105 "jsx-a11y/anchor-is-valid" : "warn" ,
@@ -136,7 +135,10 @@ export default defineConfig([
136135 "react-hooks/rules-of-hooks" : "warn" ,
137136 "react-hooks/set-state-in-effect" : "warn" ,
138137 "react-hooks/static-components" : "warn" ,
139- "react-refresh/only-export-components" : "warn" ,
138+ "react-refresh/only-export-components" : [
139+ "warn" ,
140+ { allowExportNames : [ "meta" , "links" , "headers" , "loader" , "action" ] } ,
141+ ] ,
140142 "react/display-name" : "warn" ,
141143 "react/jsx-no-target-blank" : "warn" ,
142144 "react/no-unknown-property" : "warn" ,
@@ -158,6 +160,7 @@ export default defineConfig([
158160 "import/internal-regex" : "^@plane/" ,
159161 } ,
160162 rules : {
163+ "import/consistent-type-specifier-style" : [ "error" , "prefer-top-level" ] ,
161164 "import/no-unresolved" : [ "error" , { ignore : [ "next/link" , "next/navigation" , "next/script" ] } ] ,
162165 } ,
163166 } ,
0 commit comments