Files
form/examples/react/simple/.eslintrc.cjs
Corbin Crutchley 77594a63ba fix: eslint for example project (#407)
* chore: fix eslint for example project

* chore: fix linting
2023-08-28 18:22:22 -07:00

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;