16 lines
412 B
JavaScript
16 lines
412 B
JavaScript
|
|
module.exports = {
|
||
|
|
root: true,
|
||
|
|
parser: "@typescript-eslint/parser",
|
||
|
|
plugins: ["@typescript-eslint", "jest", "jsx-a11y"],
|
||
|
|
extends: [
|
||
|
|
"eslint:recommended",
|
||
|
|
"plugin:@typescript-eslint/recommended",
|
||
|
|
"plugin:react-hooks/recommended",
|
||
|
|
"eslint:recommended",
|
||
|
|
"plugin:react/recommended",
|
||
|
|
"plugin:react/jsx-runtime",
|
||
|
|
"plugin:import/recommended",
|
||
|
|
"plugin:import/typescript",
|
||
|
|
],
|
||
|
|
};
|