chore(web): update ESLint configuration and improve component layouts
Build, Test, and Push CFDM Docker Image / test (push) Failing after 3m29s
Build, Test, and Push CFDM Docker Image / build-and-push (push) Has been skipped
Build, Test, and Push CFDM Docker Image / create-release (push) Has been skipped
Build, Test, and Push CFDM Docker Image / update-wiki (push) Has been skipped

- Modified ESLint configuration to include additional global ignores for better linting control.
- Updated component layouts in the ReUI kit to use flexbox for improved spacing and alignment.
- Refactored the CertificatesPage to optimize chart data handling and state management.
- Enhanced DashboardPage with state management for current timestamp to streamline expiration checks.

Co-authored-by: Cursor <[email protected]>
This commit is contained in:
Denozordec
2026-07-10 00:38:23 +07:00
co-authored by Cursor
parent 29e57666e0
commit a55200e623
6 changed files with 18 additions and 21 deletions
+4 -6
View File
@@ -8,7 +8,7 @@ import { defineConfig, globalIgnores } from 'eslint/config'
const rawHtmlElements = ['table', 'select', 'hr']
export default defineConfig([
globalIgnores(['dist']),
globalIgnores(['dist', 'src/components/blocks/**']),
{
files: ['**/*.{ts,tsx}'],
extends: [
@@ -83,11 +83,8 @@ export default defineConfig([
{
files: [
'src/components/reui/**/*.{ts,tsx}',
'src/components/data-grid-card.tsx',
'src/components/data-grid-types.ts',
'src/components/data-grid-cells.tsx',
'src/components/domains-filters-toolbar.tsx',
'src/components/list-filters-bar.tsx',
'src/components/reui-kit/**/*.{ts,tsx}',
'src/components/columns/**/*.{ts,tsx}',
],
rules: {
'react-refresh/only-export-components': 'off',
@@ -98,6 +95,7 @@ export default defineConfig([
'no-restricted-syntax': 'off',
'@typescript-eslint/no-unused-vars': 'off',
'@typescript-eslint/no-unused-expressions': 'off',
'@typescript-eslint/no-explicit-any': 'off',
'prefer-const': 'off',
},
},