本文整理汇总了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;未经允许,请勿转载。 |
请发表评论