新增: - backend/venv/ - Python 虚拟环境 - backend/start.sh - 启动脚本(使用虚拟环境) - backend/requirements.txt - 依赖列表 - .gitignore - 忽略虚拟环境和缓存文件 说明: - 每个项目使用独立虚拟环境 - 避免依赖冲突 - 启动脚本自动创建和激活虚拟环境
21 lines
1.1 KiB
JavaScript
21 lines
1.1 KiB
JavaScript
"use strict";
|
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
};
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
const minimatch_1 = __importDefault(require("minimatch"));
|
|
const path_1 = __importDefault(require("path"));
|
|
const forwardSlash_1 = __importDefault(require("../utils/path/forwardSlash"));
|
|
function createIssuePredicateFromIssueMatch(context, match) {
|
|
return (issue) => {
|
|
const matchesOrigin = !match.origin || match.origin === issue.origin;
|
|
const matchesSeverity = !match.severity || match.severity === issue.severity;
|
|
const matchesCode = !match.code || match.code === issue.code;
|
|
const matchesFile = !issue.file ||
|
|
(!!issue.file &&
|
|
(!match.file || minimatch_1.default(forwardSlash_1.default(path_1.default.relative(context, issue.file)), match.file)));
|
|
return matchesOrigin && matchesSeverity && matchesCode && matchesFile;
|
|
};
|
|
}
|
|
exports.createIssuePredicateFromIssueMatch = createIssuePredicateFromIssueMatch;
|