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


TypeScript file-rule.FileRule類代碼示例

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


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

示例1:

export function applyFileRule<Options, State, Shared>(
    program: ts.Program,
    options: Options,
    rule: FileRule<Options, State, Shared>,
    ruleKey: string,
    shared: Shared
): Issue[] {
    return rule.toIssues(
        ba.fold(
            program.getSourceFiles(),
            rule.toState(program, options, shared),
            (state, file) => rule.enforce(file, program.getTypeChecker(), state, options, ruleKey, shared)
        ),
        options,
        shared
    );
}
開發者ID:aleksey-bykov,項目名稱:linting,代碼行數:17,代碼來源:applying.ts

示例2: shouldFileBeConsidered

 (file, checker, state, options, ruleKey, shared) => {
     const fileName = file.fileName;
     const shouldConsider = shouldFileBeConsidered(options.files, fileName);
     if (shouldConsider) {
         return rule.enforce(file, checker, state, options, ruleKey, shared);
     } else {
         return state;
     }
 }
開發者ID:aleksey-bykov,項目名稱:linting,代碼行數:9,代碼來源:per-file-rule.ts

示例3:

 (state, options, shared) => rule.toIssues(state, options, shared),
開發者ID:aleksey-bykov,項目名稱:linting,代碼行數:1,代碼來源:per-file-rule.ts

示例4: haveState

 .overTo(function (node) {
     const initialState = rule.toState(this.program, options, shared);
     const finalState = rule.enforce(node, this.checker, initialState, options, ruleKey, shared);
     return haveState(finalState);
 });
開發者ID:aleksey-bykov,項目名稱:linting,代碼行數:5,代碼來源:asserting.ts

示例5: withState

 return withState(text, defaultCompilerOptions, rule, options, someRandomRuleKey, shared, state => {
     expect(insteadEach(rule.toIssues(state, options, shared), simplifyIssue))
         .toEqual(insteadEach(drafts, simplifyIssue), 'Specific issues expected.');
 })
開發者ID:aleksey-bykov,項目名稱:linting,代碼行數:4,代碼來源:asserting.ts


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