2021-06-14 11:29:03 +02:00
|
|
|
module.exports = {
|
2022-04-10 21:31:40 +02:00
|
|
|
root: true,
|
|
|
|
parser: "@typescript-eslint/parser",
|
|
|
|
plugins: ["@typescript-eslint"],
|
|
|
|
extends: [
|
|
|
|
"eslint:recommended",
|
|
|
|
"plugin:react-hooks/recommended",
|
|
|
|
"plugin:@typescript-eslint/recommended",
|
|
|
|
],
|
2021-06-14 11:29:03 +02:00
|
|
|
rules: {
|
2021-06-21 16:52:16 +02:00
|
|
|
maxClassesPerFile: 0,
|
|
|
|
maxLineLength: 0,
|
|
|
|
memberOrdering: 0,
|
|
|
|
variableName: 0,
|
2021-06-14 11:29:03 +02:00
|
|
|
},
|
|
|
|
};
|