當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript minimatch.default函數代碼示例

本文整理匯總了TypeScript中minimatch.default函數的典型用法代碼示例。如果您正苦於以下問題:TypeScript default函數的具體用法?TypeScript default怎麽用?TypeScript default使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


在下文中一共展示了default函數的9個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1:

 return files.filter(f => {
   if (f == null) return false
   if (ignoreHidden && /^\./.test(f)) return false
   for (let p of ignorePatterns) {
     if (minimatch(f, p, { dot: true })) return false
   }
   return true
 })
開發者ID:demelev,項目名稱:coc.nvim,代碼行數:8,代碼來源:file.ts

示例2: score1

function score1(selector: DocumentSelector[0], candidateUri: string, candidateLanguage: string): number {
    if (typeof selector === 'string') {
        // Shorthand notation: "mylang" -> {language: "mylang"}, "*" -> {language: "*""}.
        if (selector === '*') {
            return 5
        } else if (selector === candidateLanguage) {
            return 10
        } else {
            return 0
        }
    }

    const { language, scheme, pattern } = selector
    let ret = 0
    if (scheme) {
        if (candidateUri.startsWith(scheme + ':')) {
            ret = 10
        } else if (scheme === '*') {
            ret = 5
        } else {
            return 0
        }
    }
    if (language) {
        if (language === candidateLanguage) {
            ret = 10
        } else if (language === '*') {
            ret = Math.max(ret, 5)
        } else {
            return 0
        }
    }
    if (pattern) {
        if (pattern === candidateUri || candidateUri.endsWith(pattern) || minimatch(candidateUri, pattern)) {
            ret = 10
        } else if (minimatch(candidateUri, '**/' + pattern)) {
            ret = 5
        } else {
            return 0
        }
    }
    return ret
}
開發者ID:JoYiRis,項目名稱:sourcegraph,代碼行數:43,代碼來源:textDocument.ts

示例3: multiGlobMatches

export function multiGlobMatches(patterns: string[], path: string): boolean {

	let matched = false;
	for (const p of patterns) {
		const isExclude = p[0] === '!';
		if (matched !== isExclude) {
			break;
		}
		matched = minimatch(path, p);
	}
	return matched;
}
開發者ID:rlugojr,項目名稱:vscode-node-debug,代碼行數:12,代碼來源:pathUtilities.ts

示例4: isExcluded

    protected static isExcluded(file: string, excludes: string[]) {
        if (excludes.length === 0) {
            return false;
        }

        for (const exclude of excludes) {
            if (minimatch(file, exclude)) {
                return true;
            }
        }

        return false;
    }
開發者ID:SoureCode,項目名稱:SoureCode,代碼行數:13,代碼來源:FileLoader.ts

示例5: isIncluded

    protected static isIncluded(file: string, includes: string[]) {
        if (includes.length === 0) {
            return true;
        }

        for (const include of includes) {
            if (minimatch(file, include)) {
                return true;
            }
        }

        return false;
    }
開發者ID:SoureCode,項目名稱:SoureCode,代碼行數:13,代碼來源:FileLoader.ts

示例6: function

 parsers.forEach((parser) => {
   if (minimatch(path, parser.glob)) {
     fs.readFile(path, { encoding: 'utf-8' }, function(err, source) {
       if (err)
         return cache.error({
           message: err.message,
           stack: err.stack && err.stack.toString(),
           link: null
         })
       var artifact = parser.parse(source)
       cache.saveAST(project, path, artifact)
     })
   }
 });
開發者ID:thr0w,項目名稱:3,代碼行數:14,代碼來源:processFile.ts

示例7: minimatch

 var fileMatches = files.some((filePath) => minimatch(changedFilePath, filePath));
開發者ID:eggers,項目名稱:angular,代碼行數:1,代碼來源:broccoli-replace.ts

示例8: minimatch

 && configData.revisedFiles.some(revisedFile => minimatch(filePath, revisedFile))) {
開發者ID:plantain-00,項目名稱:rev-static,代碼行數:1,代碼來源:index.ts

示例9: minimatch

 return gitIgnore.some(line => minimatch(p, line));
開發者ID:DevIntent,項目名稱:angular-cli,代碼行數:1,代碼來源:build.ts


注:本文中的minimatch.default函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。