Socket
Socket
Sign inDemoInstall

@qulix/tslint-config-typescript

Package Overview
Dependencies
0
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @qulix/tslint-config-typescript

TypeScript Style Guide


Version published
Maintainers
1
Created

Readme

Source

tslint-config-typescript

TSLint shareable config for the Qulix TypeScript Style Guide

Installation

Install with npm:

$ npm install --save-dev tslint @qulix/tslint-config-typescript

Install with yarn:

$ yarn --dev tslint @qulix/tslint-config-typescript

Usage

Once the tslint-config-typescript package is installed, you can use it by specifying @qulix/tslint-config-typescript in the extends section of your TSLint configuration.

// tslint.json
{
  "extends": [
    "@qulix/tslint-config-typescript"
  ],
  "rules": {
    // Additional, per-project rules...
  }
}

Migration

During migration, you can disable rulesets by overriding them in yours .tslint configuration file

The rule set is stored in node_modules/@qulix/tslint-config-typescript/rules

  "extends": [
    "@qulix/tslint-config-typescript"
  ],
  "rules": {
    // format-specific
    "quotemark": false,
    // class-specific
    "class-name": false,
    "member-access": false,
  }

License

MIT

Keywords

FAQs

Last updated on 05 Feb 2019

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc