Home / File/ eslint.config.js — ui Source File

eslint.config.js — ui Source File

Architecture documentation for eslint.config.js, a javascript file in the ui codebase. 6 imports, 0 dependents.

File javascript 6 imports

Entity Profile

Dependency Diagram

graph LR
  9ec55b9a_022b_5d09_9f76_0f1a154b3844["eslint.config.js"]
  0cf05275_394d_e353_8ce5_3d8b2479c4ae["js"]
  9ec55b9a_022b_5d09_9f76_0f1a154b3844 --> 0cf05275_394d_e353_8ce5_3d8b2479c4ae
  638effcb_ab2d_d10b_67e9_7231b34b2a12["globals"]
  9ec55b9a_022b_5d09_9f76_0f1a154b3844 --> 638effcb_ab2d_d10b_67e9_7231b34b2a12
  e497a3b7_7220_f18b_d09e_9ee5e3e495b3["eslint-plugin-react-hooks"]
  9ec55b9a_022b_5d09_9f76_0f1a154b3844 --> e497a3b7_7220_f18b_d09e_9ee5e3e495b3
  0145d2e4_2dd8_595a_b194_ca10644aea1c["eslint-plugin-react-refresh"]
  9ec55b9a_022b_5d09_9f76_0f1a154b3844 --> 0145d2e4_2dd8_595a_b194_ca10644aea1c
  25f0cb19_ecdd_c0a5_a129_c1855e812e86["typescript-eslint"]
  9ec55b9a_022b_5d09_9f76_0f1a154b3844 --> 25f0cb19_ecdd_c0a5_a129_c1855e812e86
  ecb7e438_73f6_5068_df63_b146ef3ff034["config"]
  9ec55b9a_022b_5d09_9f76_0f1a154b3844 --> ecb7e438_73f6_5068_df63_b146ef3ff034
  style 9ec55b9a_022b_5d09_9f76_0f1a154b3844 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

import js from '@eslint/js'
import globals from 'globals'
import reactHooks from 'eslint-plugin-react-hooks'
import reactRefresh from 'eslint-plugin-react-refresh'
import tseslint from 'typescript-eslint'
import { defineConfig, globalIgnores } from 'eslint/config'

export default defineConfig([
  globalIgnores(['dist']),
  {
    files: ['**/*.{ts,tsx}'],
    extends: [
      js.configs.recommended,
      tseslint.configs.recommended,
      reactHooks.configs.flat.recommended,
      reactRefresh.configs.vite,
    ],
    languageOptions: {
      ecmaVersion: 2020,
      globals: globals.browser,
    },
  },
])

Dependencies

  • config
  • eslint-plugin-react-hooks
  • eslint-plugin-react-refresh
  • globals
  • js
  • typescript-eslint

Frequently Asked Questions

What does eslint.config.js do?
eslint.config.js is a source file in the ui codebase, written in javascript.
What does eslint.config.js depend on?
eslint.config.js imports 6 module(s): config, eslint-plugin-react-hooks, eslint-plugin-react-refresh, globals, js, typescript-eslint.
Where is eslint.config.js in the architecture?
eslint.config.js is located at templates/vite-app/eslint.config.js (directory: templates/vite-app).

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free