eslint.config.js — ui Source File
Architecture documentation for eslint.config.js, a javascript file in the ui codebase. 5 imports, 0 dependents.
Entity Profile
Dependency Diagram
graph LR 5cdb095f_712e_003a_a09d_3ee1df18029c["eslint.config.js"] 0cf05275_394d_e353_8ce5_3d8b2479c4ae["js"] 5cdb095f_712e_003a_a09d_3ee1df18029c --> 0cf05275_394d_e353_8ce5_3d8b2479c4ae 638effcb_ab2d_d10b_67e9_7231b34b2a12["globals"] 5cdb095f_712e_003a_a09d_3ee1df18029c --> 638effcb_ab2d_d10b_67e9_7231b34b2a12 e497a3b7_7220_f18b_d09e_9ee5e3e495b3["eslint-plugin-react-hooks"] 5cdb095f_712e_003a_a09d_3ee1df18029c --> e497a3b7_7220_f18b_d09e_9ee5e3e495b3 0145d2e4_2dd8_595a_b194_ca10644aea1c["eslint-plugin-react-refresh"] 5cdb095f_712e_003a_a09d_3ee1df18029c --> 0145d2e4_2dd8_595a_b194_ca10644aea1c 25f0cb19_ecdd_c0a5_a129_c1855e812e86["typescript-eslint"] 5cdb095f_712e_003a_a09d_3ee1df18029c --> 25f0cb19_ecdd_c0a5_a129_c1855e812e86 style 5cdb095f_712e_003a_a09d_3ee1df18029c 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'
export default tseslint.config({
extends: [js.configs.recommended, ...tseslint.configs.recommended],
files: ['**/*.{ts,tsx}'],
ignores: ['dist'],
languageOptions: {
ecmaVersion: 2020,
globals: globals.browser,
},
plugins: {
'react-hooks': reactHooks,
'react-refresh': reactRefresh,
},
rules: {
...reactHooks.configs.recommended.rules,
'react-refresh/only-export-components': [
'warn',
{ allowConstantExport: true },
],
},
})
Dependencies
- eslint-plugin-react-hooks
- eslint-plugin-react-refresh
- globals
- js
- typescript-eslint
Source
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 5 module(s): 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 packages/shadcn/test/fixtures/frameworks/vite/eslint.config.js (directory: packages/shadcn/test/fixtures/frameworks/vite).
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free