本文整理匯總了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
);
}
示例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;
}
}
示例3:
(state, options, shared) => rule.toIssues(state, options, shared),
示例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);
});
示例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.');
})