repos / starfx

a micro-mvc framework for react apps
git clone https://github.com/neurosnap/starfx.git

starfx / examples / basic
Eric Bower  ·  2025-06-06

.eslintrc.cjs

 1module.exports = {
 2  env: { browser: true, es2020: true },
 3  extends: [
 4    "eslint:recommended",
 5    "plugin:@typescript-eslint/recommended",
 6    "plugin:react-hooks/recommended",
 7  ],
 8  parser: "@typescript-eslint/parser",
 9  parserOptions: { ecmaVersion: "latest", sourceType: "module" },
10  plugins: ["react-refresh"],
11  rules: {
12    "react-refresh/only-export-components": "warn",
13  },
14};