Merge pull request #24295 from binishma-ss/package-app-next

Added ESLint to package-app-next
This commit is contained in:
Fredrik Adelöw
2024-04-23 18:54:38 +02:00
committed by GitHub
2 changed files with 7 additions and 2 deletions
+5 -1
View File
@@ -1 +1,5 @@
module.exports = require('@backstage/cli/config/eslint-factory')(__dirname);
module.exports = require('@backstage/cli/config/eslint-factory')(__dirname, {
rules: {
'@backstage/no-top-level-material-ui-4-imports': 'error',
},
});
@@ -19,7 +19,8 @@ import {
createComponentExtension,
coreComponentRefs,
} from '@backstage/frontend-plugin-api';
import { Box, Typography } from '@material-ui/core';
import Box from '@material-ui/core/Box';
import Typography from '@material-ui/core/Typography';
import { Button } from '@backstage/core-components';
export function CustomNotFoundErrorPage() {