* WIP: Performance improvements in entity explorer * WIP: Achieve feature parity for entity explorer with release * Update unit tests * Add sentry profiling to current page entity properties component * Fix page add/delete not showing up on entity explorer issue. Update memoization logic for pagegroup entity * Deal with the ban-ts-ignore eslint issues * Update unit tests * Fix widget entity children visibility * Fix tests and code * Fix tests for scenarios where the collapsed entities are unmount, as this is a part of the performance optimization * Filter undefined children when generating structureDSL * Remove rule from eslintrc Consolidate createPage test command * Update CreatePage tests to remove redundant dsl updates * Revert CreatePage test changes, as adding more checks within this command globally causes other tests to have issues. * re-enable eslint rule, as without it CI tests fail * Revert to ban-ts-comment * Fix typescript ban-ts-ignore issue by upgrading react-scripts and fixing typescript issue across the application * Typescript errors handled Co-authored-by: vicky-primathon.in <vicky.bansal@primathon.in>
38 lines
1.1 KiB
JavaScript
38 lines
1.1 KiB
JavaScript
module.exports = {
|
|
parser: "@typescript-eslint/parser",
|
|
plugins: ["react", "@typescript-eslint", "prettier", "react-hooks"],
|
|
extends: [
|
|
"plugin:react/recommended", // Uses the recommended rules from @eslint-plugin-react
|
|
"plugin:@typescript-eslint/recommended",
|
|
"prettier/@typescript-eslint",
|
|
"plugin:prettier/recommended",
|
|
],
|
|
parserOptions: {
|
|
ecmaVersion: 2020, // Allows for the parsing of modern ECMAScript features
|
|
sourceType: "module", // Allows for the use of imports
|
|
ecmaFeatures: {
|
|
jsx: true, // Allows for the parsing of JSX
|
|
},
|
|
},
|
|
rules: {
|
|
"@typescript-eslint/no-explicit-any": 0,
|
|
"react-hooks/rules-of-hooks": "error",
|
|
"@typescript-eslint/no-use-before-define": 0,
|
|
"@typescript-eslint/no-var-requires": 0,
|
|
"import/no-webpack-loader-syntax": 0,
|
|
"no-undef": 0,
|
|
"react/prop-types": 0,
|
|
"@typescript-eslint/explicit-module-boundary-types": 0,
|
|
},
|
|
settings: {
|
|
react: {
|
|
pragma: "React",
|
|
version: "detect", // Tells eslint-plugin-react to automatically detect the version of React to use
|
|
},
|
|
},
|
|
env: {
|
|
browser: true,
|
|
node: true,
|
|
},
|
|
};
|