Website Structure
This commit is contained in:
parent
62812f2090
commit
71f0676a62
22365 changed files with 4265753 additions and 791 deletions
66
Frontend-Learner/node_modules/eslint-plugin-jsdoc/dist/cjs/getJsdocProcessorPlugin.d.ts
generated
vendored
Normal file
66
Frontend-Learner/node_modules/eslint-plugin-jsdoc/dist/cjs/getJsdocProcessorPlugin.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,66 @@
|
|||
export function getJsdocProcessorPlugin(options?: JsdocProcessorOptions): ESLint.Plugin;
|
||||
export type Integer = number;
|
||||
export type JsdocProcessorOptions = {
|
||||
/**
|
||||
* Require captions for example tags
|
||||
*/
|
||||
captionRequired?: boolean | undefined;
|
||||
/**
|
||||
* See docs
|
||||
*/
|
||||
paddedIndent?: number | undefined;
|
||||
/**
|
||||
* See docs
|
||||
*/
|
||||
checkDefaults?: boolean | undefined;
|
||||
/**
|
||||
* See docs
|
||||
*/
|
||||
checkParams?: boolean | undefined;
|
||||
/**
|
||||
* See docs
|
||||
*/
|
||||
checkExamples?: boolean | undefined;
|
||||
/**
|
||||
* See docs
|
||||
*/
|
||||
checkProperties?: boolean | undefined;
|
||||
/**
|
||||
* See docs
|
||||
*/
|
||||
matchingFileName?: string | undefined;
|
||||
/**
|
||||
* See docs
|
||||
*/
|
||||
matchingFileNameDefaults?: string | undefined;
|
||||
/**
|
||||
* See docs
|
||||
*/
|
||||
matchingFileNameParams?: string | undefined;
|
||||
/**
|
||||
* See docs
|
||||
*/
|
||||
matchingFileNameProperties?: string | undefined;
|
||||
/**
|
||||
* See docs
|
||||
*/
|
||||
exampleCodeRegex?: string | RegExp | undefined;
|
||||
/**
|
||||
* See docs
|
||||
*/
|
||||
rejectExampleCodeRegex?: string | RegExp | undefined;
|
||||
/**
|
||||
* See docs
|
||||
*/
|
||||
allowedLanguagesToProcess?: string[] | undefined;
|
||||
/**
|
||||
* See docs
|
||||
*/
|
||||
sourceType?: "module" | "script" | undefined;
|
||||
/**
|
||||
* See docs
|
||||
*/
|
||||
parser?: Linter.ESTreeParser | Linter.NonESTreeParser | undefined;
|
||||
};
|
||||
import type { ESLint } from 'eslint';
|
||||
import type { Linter } from 'eslint';
|
||||
Loading…
Add table
Add a link
Reference in a new issue