mirror of
https://github.com/kjanat/livedash-node.git
synced 2026-01-16 12:12:09 +01:00
Improves the dashboard with additional metrics and visualizations to provide a more comprehensive overview of application usage and performance. Adds new charts, including: - Word cloud for category analysis - Geographic map for user distribution (simulated data) - Response time distribution chart Refactors existing components for improved clarity and reusability, including the introduction of a generic `MetricCard` component. Improves error handling and user feedback during data refresh and session loading. Adds recommended VSCode extensions for ESLint and Prettier.
41 lines
924 B
JavaScript
41 lines
924 B
JavaScript
import js from "@eslint/js";
|
|
import { FlatCompat } from "@eslint/eslintrc";
|
|
import path from "path";
|
|
import { fileURLToPath } from "url";
|
|
|
|
const __filename = fileURLToPath(import.meta.url);
|
|
const __dirname = path.dirname(__filename);
|
|
const compat = new FlatCompat({
|
|
baseDirectory: __dirname,
|
|
});
|
|
|
|
const eslintConfig = [
|
|
js.configs.recommended,
|
|
...compat.extends(
|
|
"next/core-web-vitals",
|
|
"plugin:@typescript-eslint/recommended"
|
|
),
|
|
{
|
|
ignores: [
|
|
"node_modules/",
|
|
".next/",
|
|
".vscode/",
|
|
"out/",
|
|
"build/",
|
|
"dist/",
|
|
"coverage/",
|
|
],
|
|
rules: {
|
|
"@typescript-eslint/no-explicit-any": "off",
|
|
"@typescript-eslint/no-unused-vars": "warn",
|
|
"react/no-unescaped-entities": "off",
|
|
"no-console": "warn",
|
|
"no-trailing-spaces": "error",
|
|
"prefer-const": "error",
|
|
"no-unused-vars": "off",
|
|
},
|
|
},
|
|
];
|
|
|
|
export default eslintConfig;
|