base.js — ui Source File
Architecture documentation for base.js, a javascript file in the ui codebase. 5 imports, 2 dependents.
Entity Profile
Dependency Diagram
graph LR a4e0d0b1_86a2_3b91_ffdb_eaecc11ca88e["base.js"] 0cf05275_394d_e353_8ce5_3d8b2479c4ae["js"] a4e0d0b1_86a2_3b91_ffdb_eaecc11ca88e --> 0cf05275_394d_e353_8ce5_3d8b2479c4ae 7db6339e_6ae3_10fb_306a_49d9830caae1["eslint-config-prettier"] a4e0d0b1_86a2_3b91_ffdb_eaecc11ca88e --> 7db6339e_6ae3_10fb_306a_49d9830caae1 3471f0f6_2088_b3d2_a0e6_677e301900c0["eslint-plugin-only-warn"] a4e0d0b1_86a2_3b91_ffdb_eaecc11ca88e --> 3471f0f6_2088_b3d2_a0e6_677e301900c0 fb33fa02_7e7e_5a6e_e21a_b70cf2d77d29["eslint-plugin-turbo"] a4e0d0b1_86a2_3b91_ffdb_eaecc11ca88e --> fb33fa02_7e7e_5a6e_e21a_b70cf2d77d29 25f0cb19_ecdd_c0a5_a129_c1855e812e86["typescript-eslint"] a4e0d0b1_86a2_3b91_ffdb_eaecc11ca88e --> 25f0cb19_ecdd_c0a5_a129_c1855e812e86 5f1ad955_9903_90fd_3e53_c48e9df1263e["next.js"] 5f1ad955_9903_90fd_3e53_c48e9df1263e --> a4e0d0b1_86a2_3b91_ffdb_eaecc11ca88e 91c38af4_b982_f551_2fd7_b885b97e1a99["react-internal.js"] 91c38af4_b982_f551_2fd7_b885b97e1a99 --> a4e0d0b1_86a2_3b91_ffdb_eaecc11ca88e style a4e0d0b1_86a2_3b91_ffdb_eaecc11ca88e fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
import js from "@eslint/js"
import eslintConfigPrettier from "eslint-config-prettier"
import onlyWarn from "eslint-plugin-only-warn"
import turboPlugin from "eslint-plugin-turbo"
import tseslint from "typescript-eslint"
/**
* A shared ESLint configuration for the repository.
*
* @type {import("eslint").Linter.Config}
* */
export const config = [
js.configs.recommended,
eslintConfigPrettier,
...tseslint.configs.recommended,
{
plugins: {
turbo: turboPlugin,
},
rules: {
"turbo/no-undeclared-env-vars": "warn",
},
},
{
plugins: {
onlyWarn,
},
},
{
ignores: ["dist/**"],
},
]
Domain
Dependencies
- eslint-config-prettier
- eslint-plugin-only-warn
- eslint-plugin-turbo
- js
- typescript-eslint
Imported By
Source
Frequently Asked Questions
What does base.js do?
base.js is a source file in the ui codebase, written in javascript. It belongs to the ComponentRegistry domain.
What does base.js depend on?
base.js imports 5 module(s): eslint-config-prettier, eslint-plugin-only-warn, eslint-plugin-turbo, js, typescript-eslint.
What files import base.js?
base.js is imported by 2 file(s): next.js, react-internal.js.
Where is base.js in the architecture?
base.js is located at templates/monorepo-next/packages/eslint-config/base.js (domain: ComponentRegistry, directory: templates/monorepo-next/packages/eslint-config).
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free