Package Exports
- eslint-plugin-typescript
- eslint-plugin-typescript/lib/rules/adjacent-overload-signatures
- eslint-plugin-typescript/lib/rules/class-name-casing
- eslint-plugin-typescript/lib/rules/explicit-member-accessibility
- eslint-plugin-typescript/lib/rules/interface-name-prefix
- eslint-plugin-typescript/lib/rules/member-ordering
- eslint-plugin-typescript/lib/rules/no-angle-bracket-type-assertion
- eslint-plugin-typescript/lib/rules/no-empty-interface
- eslint-plugin-typescript/lib/rules/no-explicit-any
- eslint-plugin-typescript/lib/rules/no-namespace
- eslint-plugin-typescript/lib/rules/no-parameter-properties
- eslint-plugin-typescript/lib/rules/no-triple-slash-reference
- eslint-plugin-typescript/lib/rules/no-type-alias
- eslint-plugin-typescript/lib/rules/prefer-namespace-keyword
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (eslint-plugin-typescript) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
eslint-plugin-typescript
TypeScript support for ESLint. (This is still in the very early stages, so please be patient.)
Installation
You'll first need to install ESLint:
$ npm i eslint --save-devNext, install typescript-eslint-parser:
$ npm install typescript-eslint-parser --save-devLast, install eslint-plugin-typescript:
$ npm install eslint-plugin-typescript --save-devNote: If you installed ESLint globally (using the -g flag) then you must also install eslint-plugin-typescript globally.
Usage
Add typescript-eslint-parser to the parser field and typescript to the plugins section of your .eslintrc configuration file. You can omit the eslint-plugin- prefix:
{
"parser": "typescript-eslint-parser",
"plugins": [
"typescript"
]
}Then configure the rules you want to use under the rules section.
{
"rules": {
"typescript/rule-name": "error"
}
}Supported Rules
typescript/adjacent-overload-signatures— Require that member overloads be consecutivetypescript/class-name-casing— Require PascalCased class and interface names (class-namefrom TSLint)typescript/explicit-function-return-type— Require explicit return types on functions and class methodstypescript/explicit-member-accessibility— Require explicit accessibility modifiers on class properties and methods (member-accessfrom TSLint)typescript/interface-name-prefix— Require that interface names be prefixed withI(interface-namefrom TSLint)typescript/member-delimiter-style— Require a specific member delimiter style for interfaces and type literalstypescript/member-naming— Enforces naming conventions for class members by visibility.typescript/member-ordering— Require a consistent member declaration order (member-orderingfrom TSLint)typescript/no-angle-bracket-type-assertion— Enforces the use ofas Typeassertions instead of<Type>assertions (no-angle-bracket-type-assertionfrom TSLint)typescript/no-array-constructor— Disallow genericArrayconstructorstypescript/no-empty-interface— Disallow the declaration of empty interfaces (no-empty-interfacefrom TSLint)typescript/no-explicit-any— Disallow usage of theanytype (no-anyfrom TSLint)typescript/no-namespace— Disallow the use of custom TypeScript modules and namespacestypescript/no-parameter-properties— Disallow the use of parameter properties in class constructors. (no-parameter-propertiesfrom TSLint)typescript/no-triple-slash-reference— Disallow/// <reference path="" />comments (no-referencefrom TSLint)typescript/no-type-alias— Disallow the use of type aliases (interface-over-type-literalfrom TSLint)typescript/no-unused-vars— Prevent TypeScript-specific constructs from being erroneously flagged as unusedtypescript/no-use-before-define— Disallow the use of variables before they are definedtypescript/prefer-namespace-keyword— Require the use of thenamespacekeyword instead of themodulekeyword to declare custom TypeScript modules. (no-internal-modulefrom TSLint)typescript/type-annotation-spacing— Require consistent spacing around type annotations