@manuth/eslint-plugin-typescript
Version:
A set of personal eslint-rulesets for TypeScript-projects
34 lines (33 loc) • 723 B
text/typescript
/**
* Represents an `eslint`-plugin.
*/
export declare const enum ESLintPlugin {
/**
* Indicates the `@stylistic` plugin.
*/
Stylistic = "@stylistic",
/**
* Indicates the `@typescript-eslint` plugin.
*/
TypeScriptESLint = "@typescript-eslint",
/**
* Indicates the `@eslint-community/eslint-comments` plugin.
*/
ESLintComments = "@eslint-community/eslint-comments",
/**
* Indicates the `import` plugin.
*/
Import = "import",
/**
* Indicates the `import-x` plugin.
*/
ImportX = "import-x",
/**
* Indicates the `jsdoc` plugin.
*/
JSDoc = "jsdoc",
/**
* Indicates the `node` plugin.
*/
Node = "n"
}