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

@lego/tslint-config

Package Overview
Dependencies
Maintainers
1
Versions
63
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@lego/tslint-config

@lego shareable tslint config for ts projects

  • 1.3.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
76
increased by300%
Maintainers
1
Weekly downloads
 
Created
Source

@lego/tslint-config

Prerequisites

  • don't use any of the configs as globally installed modules

Installation

Install this config package:

$ npm i -D @lego/tslint-config

Usage

Full Configurations

This package includes the following complete and ready to use configurations:

  • @lego/tslint-config - Base config + Prettier
  • @lego/tslint-config/lib/configurations/typescript - Base Config + Prettier
  • @lego/tslint-config/lib/configurations/typescript-react - Base Config + React config + Prettier

add the above preferred configuration in your tslint.json file as f.ex:

{
  "extends": "@lego/tslint-config"
}

Rules

This package currently implements rules from the following packages:

A future release will add LEGO custom rules for Angular projects.

if you would like to use codelyzer in the meanwhile, with your own rules, it's imperative that you follow the following steps:

You can use the tslint-angular preset. All you need is:

$ npm i tslint-angular

After that create a tslint.json file with the following configuration, note that the order is important.

{
  "extends": ["tslint-angular", "@lego/tslint-config"]
}

Overriding Rules

With the above tslint.json configuration example, you can still use or override already defined rules as such:

{
  "extends": "@lego/tslint-config",
  "rules": {
    "no-submodule-imports": [true, "mobx", "mobx-react"]
  }
}

It's recommended to inspect the defined rule's configuration where the reasoning for the configuration lives. If a configuration could benefit more than just the project you're working on, feel free to create a pull request.

Keywords

FAQs

Package last updated on 04 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