feat: 接入eslint
All checks were successful
CI Monitor CI/CD / build-image (push) Successful in 29s
CI Monitor CI/CD / deploy (push) Successful in 30s

This commit is contained in:
zhaoyingbo 2024-07-24 10:56:26 +00:00
parent 3f220f7943
commit a4555ac862
14 changed files with 55 additions and 18 deletions

View File

@ -1,13 +1,16 @@
{
"name": "ci_monitor",
"image": "mcr.microsoft.com/devcontainers/base:ubuntu-24.04",
"image": "mcr.microsoft.com/devcontainers/typescript-node:20",
"customizations": {
"vscode": {
"settings": {
"files.autoSave": "afterDelay",
"editor.guides.bracketPairs": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "always"
}
},
"extensions": [
"eamodio.gitlens",

BIN
bun.lockb

Binary file not shown.

View File

@ -1,8 +1,9 @@
import moment from "moment";
import db from "../../db";
import service from "../../service";
import moment from "moment";
import { Gitlab } from "../../types/gitlab";
import { DB } from "../../types/db";
import { Gitlab } from "../../types/gitlab";
/**
* pipeline列表

View File

@ -1,5 +1,5 @@
import project from "./project";
import pipeline from "./pipeline";
import project from "./project";
import user from "./user";
import view from "./view";

View File

@ -1,6 +1,6 @@
import pbClient from "../pbClient";
import { managePb404 } from "../../utils/pbTools";
import { DB } from "../../types/db";
import { managePb404 } from "../../utils/pbTools";
import pbClient from "../pbClient";
/**
* ID

View File

@ -1,6 +1,6 @@
import { DB } from "../../types/db";
import { managePb404 } from "../../utils/pbTools";
import pbClient from "../pbClient";
import { DB } from "../../types/db";
/**
* ID

View File

@ -1,6 +1,6 @@
import { DB } from "../../types/db";
import { managePb404 } from "../../utils/pbTools";
import pbClient from "../pbClient";
import { DB } from "../../types/db";
/**
* ID从数据库检索单个用户

View File

@ -1,6 +1,6 @@
import { DB } from "../../types/db";
import { managePb404 } from "../../utils/pbTools";
import pbClient from "../pbClient";
import { DB } from "../../types/db";
/**
*

22
eslint.config.js Normal file
View File

@ -0,0 +1,22 @@
import pluginJs from "@eslint/js";
import simpleImportSort from "eslint-plugin-simple-import-sort";
import globals from "globals";
import tseslint from "typescript-eslint";
export default [
{ files: ["**/*.{js,mjs,cjs,ts}"] },
{ languageOptions: { globals: globals.browser } },
pluginJs.configs.recommended,
...tseslint.configs.recommended,
{
plugins: {
"simple-import-sort": simpleImportSort,
},
rules: {
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-namespace": "off",
"simple-import-sort/imports": "error",
"simple-import-sort/exports": "error",
},
},
];

View File

@ -3,20 +3,26 @@
"module": "index.ts",
"type": "module",
"scripts": {
"start": "bun run index.ts"
"start": "bun run index.ts",
"lint": "eslint --fix ."
},
"devDependencies": {
"bun-types": "latest"
"@eslint/js": "^9.7.0",
"@types/lodash": "^4.14.202",
"@types/node-schedule": "^2.1.6",
"bun-types": "latest",
"eslint": "9.x",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^15.8.0",
"typescript-eslint": "^7.17.0"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@types/node-schedule": "^2.1.6",
"@types/lodash": "^4.14.202",
"lodash": "^4.17.21",
"moment": "^2.30.1",
"node-schedule": "^2.1.1",
"pocketbase": "^0.21.1"
}
}
}

View File

@ -1,4 +1,5 @@
import { scheduleJob } from "node-schedule";
import manageRobot from "../controllers/manageRobot";
import syncPipLine from "./syncPipLine";

View File

@ -1,7 +1,7 @@
import { Gitlab } from "../../types/gitlab";
export const gitlabReqWarp = async <T = any>(
func: Function,
func: () => Promise<T>,
default_value: any
): Promise<T> => {
try {

View File

@ -84,7 +84,9 @@ const netTool = async <T = any>({
try {
resText = await res.text();
resData = JSON.parse(resText);
} catch {}
} catch {
/* empty */
}
// 记录响应
logResponse(res, method, headers, payload, resData || resText);

View File

@ -1,4 +1,6 @@
export const managePb404 = async <T>(dbFunc: Function): Promise<T | null> => {
export const managePb404 = async <T>(
dbFunc: () => Promise<T>
): Promise<T | null> => {
try {
return await dbFunc();
} catch (err: any) {