质控程序

banxia 99d248eb85 feat: logo修改&程序名称修改 hace 3 semanas
dist-electron b2c0ccc8e3 提交 hace 5 meses
electron 99d248eb85 feat: logo修改&程序名称修改 hace 3 semanas
public 99d248eb85 feat: logo修改&程序名称修改 hace 3 semanas
release b2c0ccc8e3 提交 hace 5 meses
src 99d248eb85 feat: logo修改&程序名称修改 hace 3 semanas
.env 7743c8c4c5 feat: 消息通知完善&托盘图标修改 hace 1 mes
.env.development b2c0ccc8e3 提交 hace 5 meses
.env.production c479e7b501 feat: 配置生产环境 hace 1 mes
.eslintrc.cjs b2c0ccc8e3 提交 hace 5 meses
.gitignore e3b2db52a0 feat: 自定义标题栏 hace 1 mes
README.md b2c0ccc8e3 提交 hace 5 meses
eslint.config.js b2c0ccc8e3 提交 hace 5 meses
index.html 9b392ab88c feat: socket只需监听一次 hace 1 mes
package-lock.json b2c0ccc8e3 提交 hace 5 meses
package.json 99d248eb85 feat: logo修改&程序名称修改 hace 3 semanas
pnpm-lock.yaml 7743c8c4c5 feat: 消息通知完善&托盘图标修改 hace 1 mes
postcss.config.js b2c0ccc8e3 提交 hace 5 meses
tailwind.config.js b2c0ccc8e3 提交 hace 5 meses
test.md b2c0ccc8e3 提交 hace 5 meses
tsconfig.app.json b2c0ccc8e3 提交 hace 5 meses
tsconfig.json b2c0ccc8e3 提交 hace 5 meses
tsconfig.node.json b2c0ccc8e3 提交 hace 5 meses
vite.config.ts 6f5c5d0407 feat: login hace 1 mes

README.md

React + TypeScript + Vite

This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.

Currently, two official plugins are available:

Expanding the ESLint configuration

If you are developing a production application, we recommend updating the configuration to enable type aware lint rules:

  • Configure the top-level parserOptions property like this:

    export default tseslint.config({
    languageOptions: {
    // other options...
    parserOptions: {
      project: ['./tsconfig.node.json', './tsconfig.app.json'],
      tsconfigRootDir: import.meta.dirname,
    },
    },
    })
    
  • Replace tseslint.configs.recommended to tseslint.configs.recommendedTypeChecked or tseslint.configs.strictTypeChecked

  • Optionally add ...tseslint.configs.stylisticTypeChecked

  • Install eslint-plugin-react and update the config:

    // eslint.config.js
    import react from 'eslint-plugin-react'
    
    export default tseslint.config({
    // Set the react version
    settings: { react: { version: '18.3' } },
    plugins: {
    // Add the react plugin
    react,
    },
    rules: {
    // other rules...
    // Enable its recommended rules
    ...react.configs.recommended.rules,
    ...react.configs['jsx-runtime'].rules,
    },
    })