Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

eslint-plugin-typescript

Package Overview
Dependencies
Maintainers
1
Versions
20
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eslint-plugin-typescript

TypeScript plugin for ESLint

  • 1.0.0-rc.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
32K
decreased by-44.19%
Maintainers
1
Weekly downloads
 
Created
Source

eslint-plugin-typescript

NPM version NPM downloads TravisCI

TypeScript support for ESLint. (This is still in the very early stages, so please be patient.)

The below readme is for the upcoming 1.0.0 release. Please see this tag for the current NPM version (0.14.0)

Installation

You'll first need to install ESLint:

$ npm i eslint --save-dev

Next, install typescript if you haven’t already:

$ npm i typescript@~3.1.1 --save-dev

Last, install eslint-plugin-typescript:

$ npm install eslint-plugin-typescript --save-dev

Note: If you installed ESLint globally (using the -g flag) then you must also install eslint-plugin-typescript globally.

Usage

Add eslint-plugin-typescript/parser to the parser field and typescript to the plugins section of your .eslintrc configuration file:

{
    "parser": "eslint-plugin-typescript/parser",
    "plugins": ["typescript"]
}

Note: The plugin provides its own version of the typescript-eslint-parser via eslint-plugin-typescript/parser. This helps us guarantee 100% compatibility between the plugin and the parser.

Then configure the rules you want to use under the rules section.

{
    "parser": "eslint-plugin-typescript/parser",
    "plugins": ["typescript"],
    "rules": {
        "typescript/rule-name": "error"
    }
}

You can also enable all the recommended rules at once. Add plugin:typescript/recommended in extends:

{
    "extends": ["plugin:typescript/recommended"]
}

Supported Rules

Key: :heavy_check_mark: = recommended, :wrench: = fixable

NameDescription:heavy_check_mark::wrench:
typescript/adjacent-overload-signaturesRequire that member overloads be consecutive (adjacent-overload-signatures from TSLint):heavy_check_mark:
typescript/array-typeRequires using either T[] or Array<T> for arrays (array-type from TSLint):heavy_check_mark::wrench:
typescript/ban-typesEnforces that types will not to be used (ban-types from TSLint):heavy_check_mark::wrench:
typescript/camelcaseEnforce camelCase naming convention:heavy_check_mark:
typescript/class-name-casingRequire PascalCased class and interface names (class-name from TSLint):heavy_check_mark:
typescript/explicit-function-return-typeRequire explicit return types on functions and class methods:heavy_check_mark:
typescript/explicit-member-accessibilityRequire explicit accessibility modifiers on class properties and methods (member-access from TSLint):heavy_check_mark:
typescript/generic-type-namingEnforces naming of generic type variables
typescript/indentEnforce consistent indentation (indent from TSLint):heavy_check_mark::wrench:
typescript/interface-name-prefixRequire that interface names be prefixed with I (interface-name from TSLint):heavy_check_mark:
typescript/member-delimiter-styleRequire a specific member delimiter style for interfaces and type literals:heavy_check_mark::wrench:
typescript/member-namingEnforces naming conventions for class members by visibility.
typescript/member-orderingRequire a consistent member declaration order (member-ordering from TSLint)
typescript/no-angle-bracket-type-assertionEnforces the use of as Type assertions instead of <Type> assertions (no-angle-bracket-type-assertion from TSLint):heavy_check_mark:
typescript/no-array-constructorDisallow generic Array constructors:heavy_check_mark::wrench:
typescript/no-empty-interfaceDisallow the declaration of empty interfaces (no-empty-interface from TSLint):heavy_check_mark:
typescript/no-explicit-anyDisallow usage of the any type (no-any from TSLint):heavy_check_mark:
typescript/no-extraneous-classForbids the use of classes as namespaces (no-unnecessary-class from TSLint)
typescript/no-inferrable-typesDisallows explicit type declarations for variables or parameters initialized to a number, string, or boolean. (no-inferrable-types from TSLint):heavy_check_mark::wrench:
typescript/no-misused-newEnforce valid definition of new and constructor. (no-misused-new from TSLint):heavy_check_mark:
typescript/no-namespaceDisallow the use of custom TypeScript modules and namespaces (no-namespace from TSLint):heavy_check_mark:
typescript/no-non-null-assertionDisallows non-null assertions using the ! postfix operator (no-non-null-assertion from TSLint):heavy_check_mark:
typescript/no-object-literal-type-assertionForbids an object literal to appear in a type assertion expression (no-object-literal-type-assertion from TSLint):heavy_check_mark:
typescript/no-parameter-propertiesDisallow the use of parameter properties in class constructors. (no-parameter-properties from TSLint):heavy_check_mark:
typescript/no-this-aliasDisallow aliasing this (no-this-assignment from TSLint)
typescript/no-triple-slash-referenceDisallow /// <reference path="" /> comments (no-reference from TSLint):heavy_check_mark:
typescript/no-type-aliasDisallow the use of type aliases (interface-over-type-literal from TSLint)
typescript/no-unused-varsDisallow unused variables (no-unused-variable from TSLint):heavy_check_mark:
typescript/no-use-before-defineDisallow the use of variables before they are defined:heavy_check_mark:
typescript/no-var-requiresDisallows the use of require statements except in import statements (no-var-requires from TSLint):heavy_check_mark:
typescript/prefer-interfacePrefer an interface declaration over a type literal (type T = { ... }) (interface-over-type-literal from TSLint):heavy_check_mark::wrench:
typescript/prefer-namespace-keywordRequire the use of the namespace keyword instead of the module keyword to declare custom TypeScript modules. (no-internal-module from TSLint):heavy_check_mark::wrench:
typescript/type-annotation-spacingRequire consistent spacing around type annotations (typedef-whitespace from TSLint):heavy_check_mark::wrench:

Keywords

FAQs

Package last updated on 02 Jan 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc