eslint-config-foxkit-react
v2.0.4
Published
ESlint 9 compatible Configurations for React and Preact
Downloads
22
Readme
eslint-config-foxkit-react
This package contains opinionated base configs for React/Preact development with ESLint.
See also eslint-config-foxkit for our JavaScript/TypeScript base configs.
Installation
Install with your package manager of choice:
pnpm add --save-dev eslint-config-foxkit-react [email protected] reactNote: You can also install ESlint v9, but this version may not yet be supported by other Foxkit configs.
Usage with Flat Configuration System
Add a Flat Config in your project like this:
import foxkitReact from "eslint-config-foxkit-react/flat.js";
export default [foxkitReact.jsx, foxkitReact.react];You may also add other configs on top, such as prettier, as well as your own overrides.
Usage in CommonJS projects
If your project does not set "type": "module" in package.json your config will be CommonJS instead (unless explicitly named "eslint.config.mjs"). If this is the case use require("eslint-config-foxkit/configs") instead.
const foxkitReact = require("eslint-config-foxkit-react/flat");
module.exports = [foxkitReact.jsx, foxkitReact.react];Usage with Preact
The base configuration is also available for Preact, adding a few more rules to ensure compatibilty:
import foxkitReact from "eslint-config-foxkit-react/flat.js";
export default [foxkitReact.jsx, foxkitReact.preact];Usage with new JSX Runtime
If your project uses the new JSX transform from React 17 or a framework that similarly does no longer require React to be imported at the top of each file you need to include the "jsx-runtime" config of the eslint-plugin-react plugin like this:
import reactPlugin from "eslint-plugin-react";
import foxkitReact from "eslint-config-foxkit-react/flat.js";
export default [
foxkitReact.jsx,
foxkitReact.react,
reactPlugin.configs["jsx-runtime"]
];Note: Since this overrides the settings object the jsx runtime config needs to be placed after the react config!
Extending for use with Frameworks
You can use tsEslint.config to extend the base configs, for example to add the file extensions for a framework like Astro:
import reactPlugin from "eslint-plugin-react";
import foxkitReact from "eslint-config-foxkit-react/flat.js";
import tsEslint from "typescript-eslint";
/**
* @type {import("typescript-eslint").ConfigWithExtends}
*/
const jsxCfg = {
files: foxkitReact.jsx.files.concat("**/*.astro"),
extends: [foxkitReact.jsx, reactPlugin.configs["jsx-runtime"]]
};
foxkitReact.react.rules["react/jsx-filename-extension"][1].extensions.push(
".astro"
);
export default tsEslint.config(foxkitReact.react, jsxCfg);Usage with the Legacy Configuration System
Simply add "foxkit-react" (or "foxkit-react/preact" if you are using Preact) to your extends array in your .eslintrc.cjs file:
module.exports = {
extends: ["foxkit-react"]
};Note: Should you need to add a file extension you will need to adjust jsx override and "react/jsx-filename-extension" rule:
const foxkitReactOverrides = require("eslint-config-foxkit-react/legacy/overrides");
const foxkitJSX = foxkitReactOverrides.jsx;
foxkitJSX.files.push("**/*.astro"); // example adding .astro files
module.exports = {
extends: ["foxkit-react"],
overrides: [foxkitJSX], // re-insert patched version of the override
rules: {
"react/jsx-filename-extension": [
"error",
{ extensions: [".jsx", ".tsx", ".astro"] }
]
}
};Note for VSCode
As of right now the ESLint plugin available for VSCode has experimental support for Flat Config hidden behind a setting. In your project simply create a .vscode directory with a settings.json file with the following content (or add to it if you already have one):
{
"eslint.experimental.useFlatConfig": true
}This enables the setting on a workspace-level, so when switching between projects the setting remains disabled for projects using the old config system. Also note that the .mjs and .cjs extensions may not get picked up correctly, so your config file should always be called eslint.config.js.
