# monorepo-electron-template **Repository Path**: hejiachen/monorepo-electron-template ## Basic Information - **Project Name**: monorepo-electron-template - **Description**: 此项目无法简单描述。 - **Primary Language**: TypeScript - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-03-01 - **Last Updated**: 2025-09-08 ## Categories & Tags **Categories**: Uncategorized **Tags**: TypeScript, Rust, Electron ## README # eslint config method ## download eslint `pnpm add -D -w eslint` ## eslint init `pnpm eslint --init` ## init print, no install dependencies. monorepo Install may encounter errors, Custom installation required. ``` √ How would you like to use ESLint? · problems √ What type of modules does your project use? · esm √ Which framework does your project use? · vue √ Does your project use TypeScript? · typescript √ Where does your code run? · browser, node The config that you've selected requires the following dependencies: eslint, globals, @eslint/js, typescript-eslint, eslint-plugin-vue √ Would you like to install them now? · No Successfully created {this demo path}\eslint.config.ts file. You will need to install the dependencies yourself. ``` ## Install dependencies `pnpm add -D -w eslint globals @eslint/js typescript-eslint eslint-plugin-vue` ### Check if the dynamic link library is referenced by the executable file ## windows `dumpbin /dependents {exe_file_path}` ## mac `otool -l {exe_file_path} ` ### pnpm i error ## ssh: connect to host github.com port 22: Connection refused # windows `code C:\Windows\System32\drivers\etc\hosts` add ``` 140.82.113.4 github.com ``` 更新windows dns ipconfig /flushdns # macos ...