mirror of
https://github.com/LukeHagar/form.git
synced 2025-12-08 04:19:49 +00:00
16 lines
322 B
JavaScript
16 lines
322 B
JavaScript
// @ts-check
|
|
|
|
/** @type {import('eslint').Linter.Config} */
|
|
const config = {
|
|
extends: ["plugin:react/recommended", "plugin:react-hooks/recommended"],
|
|
parserOptions: {
|
|
tsconfigRootDir: __dirname,
|
|
project: "./tsconfig.json",
|
|
},
|
|
rules: {
|
|
"react/no-children-prop": "off",
|
|
},
|
|
};
|
|
|
|
module.exports = config;
|